From c70635dafffde3f9ca51b12dbd47bcd996591eb0 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 7 Jul 2016 10:17:49 +0900 Subject: [PATCH] docs: Some dlls are not there anymore --- docs/api/web-contents.md | 4 ---- docs/development/setting-up-symbol-server.md | 2 +- docs/tutorial/windows-store-guide.md | 4 ---- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/docs/api/web-contents.md b/docs/api/web-contents.md index 47e395740b90..0601a2a8c4d0 100644 --- a/docs/api/web-contents.md +++ b/docs/api/web-contents.md @@ -706,10 +706,6 @@ up system's default printer and default settings for printing. Calling `window.print()` in web page is equivalent to calling `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)` * `options` Object diff --git a/docs/development/setting-up-symbol-server.md b/docs/development/setting-up-symbol-server.md index 073c752cbf46..d31b2c8e69f9 100644 --- a/docs/development/setting-up-symbol-server.md +++ b/docs/development/setting-up-symbol-server.md @@ -52,5 +52,5 @@ Type the following commands in Windbg to print why symbols are not loading: ``` > !sym noisy -> .reload /f chromiumcontent.dll +> .reload /f electron.exe ``` diff --git a/docs/tutorial/windows-store-guide.md b/docs/tutorial/windows-store-guide.md index 7a5108d66ba2..ff6b06afee46 100644 --- a/docs/tutorial/windows-store-guide.md +++ b/docs/tutorial/windows-store-guide.md @@ -63,18 +63,14 @@ The output should look roughly like this: │   ├── am.pak │   ├── ar.pak │   ├── [...] -├── msvcp120.dll -├── msvcr120.dll ├── natives_blob.bin ├── node.dll -├── pdf.dll ├── resources │   ├── app │   └── atom.asar ├── snapshot_blob.bin ├── squirrel.exe ├── ui_resources_200_percent.pak -├── vccorlib120.dll └── xinput1_3.dll ```