author | Jim Mathies <jmathies@mozilla.com> |
Mon, 22 Sep 2014 11:33:29 -0500 | |
changeset 206542 | d3a7f765152f39fc2b97d5fa1c0249289947f165 |
parent 206541 | e76c7a8df029f0d4ddd0a840cae94d3089fd110a |
child 206543 | 15aebfcdbde50a9f20fe7865236ca85e6f07e617 |
push id | 27529 |
push user | ryanvm@gmail.com |
push date | Mon, 22 Sep 2014 19:49:52 +0000 |
treeherder | mozilla-central@f4037194394e [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mconley |
bugs | 942707 |
milestone | 35.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/components/nsBrowserGlue.js +++ b/browser/components/nsBrowserGlue.js @@ -508,17 +508,16 @@ BrowserGlue.prototype = { DirectoryLinksProvider.init(); NewTabUtils.links.addProvider(DirectoryLinksProvider); BrowserNewTabPreloader.init(); #ifdef NIGHTLY_BUILD if (Services.prefs.getBoolPref("dom.identity.enabled")) { SignInToWebsiteUX.init(); } #endif - PdfJs.init(); #ifdef NIGHTLY_BUILD ShumwayUtils.init(); #endif webrtcUI.init(); AboutHome.init(); SessionStore.init(); BrowserUITelemetry.init(); ContentSearch.init(); @@ -666,16 +665,29 @@ BrowserGlue.prototype = { if (SCALING_PROBE_NAME) { let scaling = aWindow.devicePixelRatio * 100; Services.telemetry.getHistogramById(SCALING_PROBE_NAME).add(scaling); } }, // the first browser window has finished initializing _onFirstWindowLoaded: function BG__onFirstWindowLoaded(aWindow) { + // Initialize PdfJs when running in-process and remote. This only + // happens once since PdfJs registers global hooks. If the PdfJs + // extension is installed the init method below will be overridden + // leaving initialization to the extension. + // parent only: configure default prefs, set up pref observers, register + // pdf content handler, and initializes parent side message manager + // shim for privileged api access. + PdfJs.init(true); + // child only: similar to the call above for parent - register content + // handler and init message manager child shim for privileged api access. + // With older versions of the extension installed, this load will fail + // passively. + aWindow.messageManager.loadFrameScript("resource://pdf.js/pdfjschildbootstrap.js", true); #ifdef XP_WIN // For windows seven, initialize the jump list module. const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1"; if (WINTASKBAR_CONTRACTID in Cc && Cc[WINTASKBAR_CONTRACTID].getService(Ci.nsIWinTaskbar).available) { let temp = {}; Cu.import("resource:///modules/WindowsJumpLists.jsm", temp); temp.WinTaskbarJumpList.startup();