docs: Some dlls are not there anymore

This commit is contained in:
Cheng Zhao 2016-07-07 10:17:49 +09:00
parent c7e0df09bc
commit c70635daff
3 changed files with 1 additions and 9 deletions

View file

@ -706,10 +706,6 @@ up system's default printer and default settings for printing.
Calling `window.print()` in web page is equivalent to calling Calling `window.print()` in web page is equivalent to calling
`webContents.print({silent: false, printBackground: false})`. `webContents.print({silent: false, printBackground: false})`.
**Note:** On Windows, the print API relies on `pdf.dll`. If your application
doesn't need the print feature, you can safely remove `pdf.dll` to reduce binary
size.
### `webContents.printToPDF(options, callback)` ### `webContents.printToPDF(options, callback)`
* `options` Object * `options` Object

View file

@ -52,5 +52,5 @@ Type the following commands in Windbg to print why symbols are not loading:
``` ```
> !sym noisy > !sym noisy
> .reload /f chromiumcontent.dll > .reload /f electron.exe
``` ```

View file

@ -63,18 +63,14 @@ The output should look roughly like this:
│   ├── am.pak │   ├── am.pak
│   ├── ar.pak │   ├── ar.pak
│   ├── [...] │   ├── [...]
├── msvcp120.dll
├── msvcr120.dll
├── natives_blob.bin ├── natives_blob.bin
├── node.dll ├── node.dll
├── pdf.dll
├── resources ├── resources
│   ├── app │   ├── app
│   └── atom.asar │   └── atom.asar
├── snapshot_blob.bin ├── snapshot_blob.bin
├── squirrel.exe ├── squirrel.exe
├── ui_resources_200_percent.pak ├── ui_resources_200_percent.pak
├── vccorlib120.dll
└── xinput1_3.dll └── xinput1_3.dll
``` ```