home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Internet / Waterfox / Waterfox.exe / components / nsBrowserGlue.js < prev    next >
Text File  |  2010-01-01  |  88KB  |  2,099 lines

  1. //@line 5 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  2.  
  3. const Ci = Components.interfaces;
  4. const Cc = Components.classes;
  5. const Cr = Components.results;
  6. const Cu = Components.utils;
  7.  
  8. const XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  9.  
  10. Cu.import("resource://gre/modules/XPCOMUtils.jsm");
  11. Cu.import("resource://gre/modules/Services.jsm");
  12. Cu.import("resource:///modules/SignInToWebsite.jsm");
  13.  
  14. XPCOMUtils.defineLazyModuleGetter(this, "AboutHome",
  15.                                   "resource:///modules/AboutHome.jsm");
  16.  
  17. XPCOMUtils.defineLazyModuleGetter(this, "AddonManager",
  18.                                   "resource://gre/modules/AddonManager.jsm");
  19.  
  20. XPCOMUtils.defineLazyModuleGetter(this, "ContentClick",
  21.                                   "resource:///modules/ContentClick.jsm");
  22.  
  23. XPCOMUtils.defineLazyModuleGetter(this, "NetUtil",
  24.                                   "resource://gre/modules/NetUtil.jsm");
  25.  
  26. XPCOMUtils.defineLazyModuleGetter(this, "FileUtils",
  27.                                   "resource://gre/modules/FileUtils.jsm");
  28.  
  29. XPCOMUtils.defineLazyModuleGetter(this, "PlacesUtils",
  30.                                   "resource://gre/modules/PlacesUtils.jsm");
  31.  
  32. XPCOMUtils.defineLazyModuleGetter(this, "BookmarkHTMLUtils",
  33.                                   "resource://gre/modules/BookmarkHTMLUtils.jsm");
  34.  
  35. XPCOMUtils.defineLazyModuleGetter(this, "BookmarkJSONUtils",
  36.                                   "resource://gre/modules/BookmarkJSONUtils.jsm");
  37.  
  38. XPCOMUtils.defineLazyModuleGetter(this, "webappsUI",
  39.                                   "resource:///modules/webappsUI.jsm");
  40.  
  41. XPCOMUtils.defineLazyModuleGetter(this, "PageThumbs",
  42.                                   "resource://gre/modules/PageThumbs.jsm");
  43.  
  44. XPCOMUtils.defineLazyModuleGetter(this, "NewTabUtils",
  45.                                   "resource://gre/modules/NewTabUtils.jsm");
  46.  
  47. XPCOMUtils.defineLazyModuleGetter(this, "BrowserNewTabPreloader",
  48.                                   "resource:///modules/BrowserNewTabPreloader.jsm");
  49.  
  50. XPCOMUtils.defineLazyModuleGetter(this, "PdfJs",
  51.                                   "resource://pdf.js/PdfJs.jsm");
  52.  
  53. //@line 60 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  54.  
  55. XPCOMUtils.defineLazyModuleGetter(this, "webrtcUI",
  56.                                   "resource:///modules/webrtcUI.jsm");
  57.  
  58. XPCOMUtils.defineLazyModuleGetter(this, "PrivateBrowsingUtils",
  59.                                   "resource://gre/modules/PrivateBrowsingUtils.jsm");
  60.  
  61. XPCOMUtils.defineLazyModuleGetter(this, "RecentWindow",
  62.                                   "resource:///modules/RecentWindow.jsm");
  63.  
  64. XPCOMUtils.defineLazyModuleGetter(this, "Task",
  65.                                   "resource://gre/modules/Task.jsm");
  66.  
  67. XPCOMUtils.defineLazyModuleGetter(this, "PlacesBackups",
  68.                                   "resource://gre/modules/PlacesBackups.jsm");
  69.  
  70. XPCOMUtils.defineLazyModuleGetter(this, "OS",
  71.                                   "resource://gre/modules/osfile.jsm");
  72.  
  73. XPCOMUtils.defineLazyModuleGetter(this, "SessionStore",
  74.                                   "resource:///modules/sessionstore/SessionStore.jsm");
  75.  
  76. XPCOMUtils.defineLazyModuleGetter(this, "BrowserUITelemetry",
  77.                                   "resource:///modules/BrowserUITelemetry.jsm");
  78.  
  79. const PREF_PLUGINS_NOTIFYUSER = "plugins.update.notifyUser";
  80. const PREF_PLUGINS_UPDATEURL  = "plugins.update.url";
  81.  
  82. // We try to backup bookmarks at idle times, to avoid doing that at shutdown.
  83. // Number of idle seconds before trying to backup bookmarks.  10 minutes.
  84. const BOOKMARKS_BACKUP_IDLE_TIME = 10 * 60;
  85. // Minimum interval in milliseconds between backups.
  86. const BOOKMARKS_BACKUP_INTERVAL = 86400 * 1000;
  87. // Maximum number of backups to create.  Old ones will be purged.
  88. const BOOKMARKS_BACKUP_MAX_BACKUPS = 10;
  89.  
  90. // Factory object
  91. const BrowserGlueServiceFactory = {
  92.   _instance: null,
  93.   createInstance: function BGSF_createInstance(outer, iid) {
  94.     if (outer != null)
  95.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  96.     return this._instance == null ?
  97.       this._instance = new BrowserGlue() : this._instance;
  98.   }
  99. };
  100.  
  101. // Constructor
  102.  
  103. function BrowserGlue() {
  104.   XPCOMUtils.defineLazyServiceGetter(this, "_idleService",
  105.                                      "@mozilla.org/widget/idleservice;1",
  106.                                      "nsIIdleService");
  107.  
  108.   XPCOMUtils.defineLazyGetter(this, "_distributionCustomizer", function() {
  109.                                 Cu.import("resource:///modules/distribution.js");
  110.                                 return new DistributionCustomizer();
  111.                               });
  112.  
  113.   XPCOMUtils.defineLazyGetter(this, "_sanitizer",
  114.     function() {
  115.       let sanitizerScope = {};
  116.       Services.scriptloader.loadSubScript("chrome://browser/content/sanitize.js", sanitizerScope);
  117.       return sanitizerScope.Sanitizer;
  118.     });
  119.  
  120.   this._init();
  121. }
  122.  
  123. //@line 134 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  124.  
  125. BrowserGlue.prototype = {
  126.   _saveSession: false,
  127.   _isIdleObserver: false,
  128.   _isPlacesInitObserver: false,
  129.   _isPlacesLockedObserver: false,
  130.   _isPlacesShutdownObserver: false,
  131.   _isPlacesDatabaseLocked: false,
  132.   _migrationImportsDefaultBookmarks: false,
  133.  
  134.   _setPrefToSaveSession: function BG__setPrefToSaveSession(aForce) {
  135.     if (!this._saveSession && !aForce)
  136.       return;
  137.  
  138.     Services.prefs.setBoolPref("browser.sessionstore.resume_session_once", true);
  139.  
  140.     // This method can be called via [NSApplication terminate:] on Mac, which
  141.     // ends up causing prefs not to be flushed to disk, so we need to do that
  142.     // explicitly here. See bug 497652.
  143.     Services.prefs.savePrefFile(null);
  144.   },
  145.  
  146. //@line 157 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  147.   _setSyncAutoconnectDelay: function BG__setSyncAutoconnectDelay() {
  148.     // Assume that a non-zero value for services.sync.autoconnectDelay should override
  149.     if (Services.prefs.prefHasUserValue("services.sync.autoconnectDelay")) {
  150.       let prefDelay = Services.prefs.getIntPref("services.sync.autoconnectDelay");
  151.  
  152.       if (prefDelay > 0)
  153.         return;
  154.     }
  155.  
  156.     // delays are in seconds
  157.     const MAX_DELAY = 300;
  158.     let delay = 3;
  159.     let browserEnum = Services.wm.getEnumerator("navigator:browser");
  160.     while (browserEnum.hasMoreElements()) {
  161.       delay += browserEnum.getNext().gBrowser.tabs.length;
  162.     }
  163.     delay = delay <= MAX_DELAY ? delay : MAX_DELAY;
  164.  
  165.     Cu.import("resource://services-sync/main.js");
  166.     Weave.Service.scheduler.delayedAutoConnect(delay);
  167.   },
  168. //@line 179 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  169.  
  170.   // nsIObserver implementation 
  171.   observe: function BG_observe(subject, topic, data) {
  172.     switch (topic) {
  173.       case "prefservice:after-app-defaults":
  174.         this._onAppDefaults();
  175.         break;
  176.       case "final-ui-startup":
  177.         this._finalUIStartup();
  178.         break;
  179.       case "browser-delayed-startup-finished":
  180.         this._onFirstWindowLoaded(subject);
  181.         Services.obs.removeObserver(this, "browser-delayed-startup-finished");
  182.         break;
  183.       case "sessionstore-windows-restored":
  184.         this._onWindowsRestored();
  185.         break;
  186.       case "browser:purge-session-history":
  187.         // reset the console service's error buffer
  188.         Services.console.logStringMessage(null); // clear the console (in case it's open)
  189.         Services.console.reset();
  190.         break;
  191.       case "quit-application-requested":
  192.         this._onQuitRequest(subject, data);
  193.         break;
  194.       case "quit-application-granted":
  195.         // This pref must be set here because SessionStore will use its value
  196.         // on quit-application.
  197.         this._setPrefToSaveSession();
  198.         try {
  199.           let appStartup = Cc["@mozilla.org/toolkit/app-startup;1"].
  200.                            getService(Ci.nsIAppStartup);
  201.           appStartup.trackStartupCrashEnd();
  202.         } catch (e) {
  203.           Cu.reportError("Could not end startup crash tracking in quit-application-granted: " + e);
  204.         }
  205.         break;
  206. //@line 217 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  207.       case "browser-lastwindow-close-requested":
  208.         // The application is not actually quitting, but the last full browser
  209.         // window is about to be closed.
  210.         this._onQuitRequest(subject, "lastwindow");
  211.         break;
  212.       case "browser-lastwindow-close-granted":
  213.         this._setPrefToSaveSession();
  214.         break;
  215. //@line 227 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  216.       case "weave:service:ready":
  217.         this._setSyncAutoconnectDelay();
  218.         break;
  219.       case "weave:engine:clients:display-uri":
  220.         this._onDisplaySyncURI(subject);
  221.         break;
  222. //@line 234 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  223.       case "session-save":
  224.         this._setPrefToSaveSession(true);
  225.         subject.QueryInterface(Ci.nsISupportsPRBool);
  226.         subject.data = true;
  227.         break;
  228.       case "places-init-complete":
  229.         if (!this._migrationImportsDefaultBookmarks)
  230.           this._initPlaces(false);
  231.  
  232.         Services.obs.removeObserver(this, "places-init-complete");
  233.         this._isPlacesInitObserver = false;
  234.         // no longer needed, since history was initialized completely.
  235.         Services.obs.removeObserver(this, "places-database-locked");
  236.         this._isPlacesLockedObserver = false;
  237.         break;
  238.       case "places-database-locked":
  239.         this._isPlacesDatabaseLocked = true;
  240.         // Stop observing, so further attempts to load history service
  241.         // will not show the prompt.
  242.         Services.obs.removeObserver(this, "places-database-locked");
  243.         this._isPlacesLockedObserver = false;
  244.         break;
  245.       case "places-shutdown":
  246.         if (this._isPlacesShutdownObserver) {
  247.           Services.obs.removeObserver(this, "places-shutdown");
  248.           this._isPlacesShutdownObserver = false;
  249.         }
  250.         // places-shutdown is fired when the profile is about to disappear.
  251.         this._onPlacesShutdown();
  252.         break;
  253.       case "idle":
  254.         if (this._idleService.idleTime > BOOKMARKS_BACKUP_IDLE_TIME * 1000)
  255.           this._backupBookmarks();
  256.         break;
  257.       case "distribution-customization-complete":
  258.         Services.obs.removeObserver(this, "distribution-customization-complete");
  259.         // Customization has finished, we don't need the customizer anymore.
  260.         delete this._distributionCustomizer;
  261.         break;
  262.       case "browser-glue-test": // used by tests
  263.         if (data == "post-update-notification") {
  264.           if (Services.prefs.prefHasUserValue("app.update.postupdate"))
  265.             this._showUpdateNotification();
  266.         }
  267.         else if (data == "force-ui-migration") {
  268.           this._migrateUI();
  269.         }
  270.         else if (data == "force-distribution-customization") {
  271.           this._distributionCustomizer.applyPrefDefaults();
  272.           this._distributionCustomizer.applyCustomizations();
  273.           // To apply distribution bookmarks use "places-init-complete".
  274.         }
  275.         else if (data == "force-places-init") {
  276.           this._initPlaces(false);
  277.         }
  278.         break;
  279.       case "initial-migration-will-import-default-bookmarks":
  280.         this._migrationImportsDefaultBookmarks = true;
  281.         break;
  282.       case "initial-migration-did-import-default-bookmarks":
  283.         this._initPlaces(true);
  284.         break;
  285.       case "handle-xul-text-link":
  286.         let linkHandled = subject.QueryInterface(Ci.nsISupportsPRBool);
  287.         if (!linkHandled.data) {
  288.           let win = this.getMostRecentBrowserWindow();
  289.           if (win) {
  290.             win.openUILinkIn(data, "tab");
  291.             linkHandled.data = true;
  292.           }
  293.         }
  294.         break;
  295.       case "profile-before-change":
  296.         this._onProfileShutdown();
  297.         break;
  298. //@line 310 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  299.       case "keyword-search":
  300.         // This is very similar to code in
  301.         // browser.js:BrowserSearch.recordSearchInHealthReport(). The code could
  302.         // be consolidated if there is will. We need the observer in
  303.         // nsBrowserGlue to prevent double counting.
  304.         let reporter = Cc["@mozilla.org/datareporting/service;1"]
  305.                          .getService()
  306.                          .wrappedJSObject
  307.                          .healthReporter;
  308.  
  309.         if (!reporter) {
  310.           return;
  311.         }
  312.  
  313.         reporter.onInit().then(function record() {
  314.           try {
  315.             let engine = subject.QueryInterface(Ci.nsISearchEngine);
  316.             reporter.getProvider("org.mozilla.searches").recordSearch(engine, "urlbar");
  317.           } catch (ex) {
  318.             Cu.reportError(ex);
  319.           }
  320.         });
  321.         break;
  322. //@line 334 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  323.       case "browser-search-engine-modified":
  324.         if (data != "engine-default" && data != "engine-current") {
  325.           break;
  326.         }
  327.         // Enforce that the search service's defaultEngine is always equal to
  328.         // its currentEngine. The search service will notify us any time either
  329.         // of them are changed (either by directly setting the relevant prefs,
  330.         // i.e. if add-ons try to change this directly, or if the
  331.         // nsIBrowserSearchService setters are called).
  332.         // No need to initialize the search service, since it's guaranteed to be
  333.         // initialized already when this notification fires.
  334.         let ss = Services.search;
  335.         if (ss.currentEngine.name == ss.defaultEngine.name)
  336.           return;
  337.         if (data == "engine-current")
  338.           ss.defaultEngine = ss.currentEngine;
  339.         else
  340.           ss.currentEngine = ss.defaultEngine;
  341.         break;
  342.       case "browser-search-service":
  343.         if (data != "init-complete")
  344.           return;
  345.         Services.obs.removeObserver(this, "browser-search-service");
  346.         this._syncSearchEngines();
  347.         break;
  348.     }
  349.   },
  350.  
  351.   _syncSearchEngines: function () {
  352.     // Only do this if the search service is already initialized. This function
  353.     // gets called in finalUIStartup and from a browser-search-service observer,
  354.     // to catch both cases (search service initialization occurring before and
  355.     // after final-ui-startup)
  356.     if (Services.search.isInitialized) {
  357.       Services.search.defaultEngine = Services.search.currentEngine;
  358.     }
  359.   },
  360.  
  361.   // initialization (called on application startup) 
  362.   _init: function BG__init() {
  363.     let os = Services.obs;
  364.     os.addObserver(this, "prefservice:after-app-defaults", false);
  365.     os.addObserver(this, "final-ui-startup", false);
  366.     os.addObserver(this, "browser-delayed-startup-finished", false);
  367.     os.addObserver(this, "sessionstore-windows-restored", false);
  368.     os.addObserver(this, "browser:purge-session-history", false);
  369.     os.addObserver(this, "quit-application-requested", false);
  370.     os.addObserver(this, "quit-application-granted", false);
  371. //@line 383 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  372.     os.addObserver(this, "browser-lastwindow-close-requested", false);
  373.     os.addObserver(this, "browser-lastwindow-close-granted", false);
  374. //@line 387 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  375.     os.addObserver(this, "weave:service:ready", false);
  376.     os.addObserver(this, "weave:engine:clients:display-uri", false);
  377. //@line 390 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  378.     os.addObserver(this, "session-save", false);
  379.     os.addObserver(this, "places-init-complete", false);
  380.     this._isPlacesInitObserver = true;
  381.     os.addObserver(this, "places-database-locked", false);
  382.     this._isPlacesLockedObserver = true;
  383.     os.addObserver(this, "distribution-customization-complete", false);
  384.     os.addObserver(this, "places-shutdown", false);
  385.     this._isPlacesShutdownObserver = true;
  386.     os.addObserver(this, "handle-xul-text-link", false);
  387.     os.addObserver(this, "profile-before-change", false);
  388. //@line 401 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  389.     os.addObserver(this, "keyword-search", false);
  390. //@line 403 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  391.     os.addObserver(this, "browser-search-engine-modified", false);
  392.     os.addObserver(this, "browser-search-service", false);
  393.   },
  394.  
  395.   // cleanup (called on application shutdown)
  396.   _dispose: function BG__dispose() {
  397.     let os = Services.obs;
  398.     os.removeObserver(this, "prefservice:after-app-defaults");
  399.     os.removeObserver(this, "final-ui-startup");
  400.     os.removeObserver(this, "sessionstore-windows-restored");
  401.     os.removeObserver(this, "browser:purge-session-history");
  402.     os.removeObserver(this, "quit-application-requested");
  403.     os.removeObserver(this, "quit-application-granted");
  404. //@line 417 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  405.     os.removeObserver(this, "browser-lastwindow-close-requested");
  406.     os.removeObserver(this, "browser-lastwindow-close-granted");
  407. //@line 421 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  408.     os.removeObserver(this, "weave:service:ready");
  409.     os.removeObserver(this, "weave:engine:clients:display-uri");
  410. //@line 424 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  411.     os.removeObserver(this, "session-save");
  412.     if (this._isIdleObserver)
  413.       this._idleService.removeIdleObserver(this, BOOKMARKS_BACKUP_IDLE_TIME);
  414.     if (this._isPlacesInitObserver)
  415.       os.removeObserver(this, "places-init-complete");
  416.     if (this._isPlacesLockedObserver)
  417.       os.removeObserver(this, "places-database-locked");
  418.     if (this._isPlacesShutdownObserver)
  419.       os.removeObserver(this, "places-shutdown");
  420.     os.removeObserver(this, "handle-xul-text-link");
  421.     os.removeObserver(this, "profile-before-change");
  422. //@line 436 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  423.     os.removeObserver(this, "keyword-search");
  424. //@line 438 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  425.     os.removeObserver(this, "browser-search-engine-modified");
  426.     try {
  427.       os.removeObserver(this, "browser-search-service");
  428.       // may have already been removed by the observer
  429.     } catch (ex) {}
  430.   },
  431.  
  432.   _onAppDefaults: function BG__onAppDefaults() {
  433.     // apply distribution customizations (prefs)
  434.     // other customizations are applied in _finalUIStartup()
  435.     this._distributionCustomizer.applyPrefDefaults();
  436.   },
  437.  
  438.   // runs on startup, before the first command line handler is invoked
  439.   // (i.e. before the first window is opened)
  440.   _finalUIStartup: function BG__finalUIStartup() {
  441.     this._sanitizer.onStartup();
  442.     // check if we're in safe mode
  443.     if (Services.appinfo.inSafeMode) {
  444.       Services.ww.openWindow(null, "chrome://browser/content/safeMode.xul", 
  445.                              "_blank", "chrome,centerscreen,modal,resizable=no", null);
  446.     }
  447.  
  448.     // apply distribution customizations
  449.     // prefs are applied in _onAppDefaults()
  450.     this._distributionCustomizer.applyCustomizations();
  451.  
  452.     // handle any UI migration
  453.     this._migrateUI();
  454.  
  455.     this._syncSearchEngines();
  456.  
  457.     webappsUI.init();
  458.     PageThumbs.init();
  459.     NewTabUtils.init();
  460.     BrowserNewTabPreloader.init();
  461.     SignInToWebsiteUX.init();
  462.     PdfJs.init();
  463. //@line 479 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  464.     webrtcUI.init();
  465.     AboutHome.init();
  466.     SessionStore.init();
  467.     BrowserUITelemetry.init();
  468.  
  469.     if (Services.prefs.getBoolPref("browser.tabs.remote"))
  470.       ContentClick.init();
  471.  
  472.     Services.obs.notifyObservers(null, "browser-ui-startup-complete", "");
  473.   },
  474.  
  475.   _checkForOldBuildUpdates: function () {
  476.     // check for update if our build is old
  477.     if (Services.prefs.getBoolPref("app.update.enabled") &&
  478.         Services.prefs.getBoolPref("app.update.checkInstallTime")) {
  479.  
  480.       let buildID = Services.appinfo.appBuildID;
  481.       let today = new Date().getTime();
  482.       let buildDate = new Date(buildID.slice(0,4),     // year
  483.                                buildID.slice(4,6) - 1, // months are zero-based.
  484.                                buildID.slice(6,8),     // day
  485.                                buildID.slice(8,10),    // hour
  486.                                buildID.slice(10,12),   // min
  487.                                buildID.slice(12,14))   // ms
  488.       .getTime();
  489.  
  490.       const millisecondsIn24Hours = 86400000;
  491.       let acceptableAge = Services.prefs.getIntPref("app.update.checkInstallTime.days") * millisecondsIn24Hours;
  492.  
  493.       if (buildDate + acceptableAge < today) {
  494.         Cc["@mozilla.org/updates/update-service;1"].getService(Ci.nsIApplicationUpdateService).checkForBackgroundUpdates();
  495.       }
  496.     }
  497.   },
  498.  
  499.   _trackSlowStartup: function () {
  500.     if (Services.startup.interrupted ||
  501.         Services.prefs.getBoolPref("browser.slowStartup.notificationDisabled"))
  502.       return;
  503.  
  504.     let currentTime = Date.now() - Services.startup.getStartupInfo().process;
  505.     let averageTime = 0;
  506.     let samples = 0;
  507.     try {
  508.       averageTime = Services.prefs.getIntPref("browser.slowStartup.averageTime");
  509.       samples = Services.prefs.getIntPref("browser.slowStartup.samples");
  510.     } catch (e) { }
  511.  
  512.     let totalTime = (averageTime * samples) + currentTime;
  513.     samples++;
  514.     averageTime = totalTime / samples;
  515.  
  516.     if (samples >= Services.prefs.getIntPref("browser.slowStartup.maxSamples")) {
  517.       if (averageTime > Services.prefs.getIntPref("browser.slowStartup.timeThreshold"))
  518.         this._showSlowStartupNotification();
  519.       averageTime = 0;
  520.       samples = 0;
  521.     }
  522.  
  523.     Services.prefs.setIntPref("browser.slowStartup.averageTime", averageTime);
  524.     Services.prefs.setIntPref("browser.slowStartup.samples", samples);
  525.   },
  526.  
  527.   _showSlowStartupNotification: function () {
  528.     let win = this.getMostRecentBrowserWindow();
  529.     if (!win)
  530.       return;
  531.  
  532.     let productName = Services.strings
  533.                               .createBundle("chrome://branding/locale/brand.properties")
  534.                               .GetStringFromName("brandFullName");
  535.     let message = win.gNavigatorBundle.getFormattedString("slowStartup.message", [productName]);
  536.  
  537.     let buttons = [
  538.       {
  539.         label:     win.gNavigatorBundle.getString("slowStartup.helpButton.label"),
  540.         accessKey: win.gNavigatorBundle.getString("slowStartup.helpButton.accesskey"),
  541.         callback: function () {
  542.           win.openUILinkIn("https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems", "tab");
  543.         }
  544.       },
  545.       {
  546.         label:     win.gNavigatorBundle.getString("slowStartup.disableNotificationButton.label"),
  547.         accessKey: win.gNavigatorBundle.getString("slowStartup.disableNotificationButton.accesskey"),
  548.         callback: function () {
  549.           Services.prefs.setBoolPref("browser.slowStartup.notificationDisabled", true);
  550.         }
  551.       }
  552.     ];
  553.  
  554.     let nb = win.document.getElementById("global-notificationbox");
  555.     nb.appendNotification(message, "slow-startup",
  556.                           "chrome://browser/skin/slowStartup-16.png",
  557.                           nb.PRIORITY_INFO_LOW, buttons);
  558.   },
  559.  
  560.   /**
  561.    * Show a notification bar offering a reset if the profile has been unused for some time.
  562.    */
  563.   _resetUnusedProfileNotification: function () {
  564.     let win = this.getMostRecentBrowserWindow();
  565.     if (!win)
  566.       return;
  567.  
  568.     Cu.import("resource://gre/modules/ResetProfile.jsm");
  569.     if (!ResetProfile.resetSupported())
  570.       return;
  571.  
  572.     let productName = Services.strings
  573.                               .createBundle("chrome://branding/locale/brand.properties")
  574.                               .GetStringFromName("brandShortName");
  575.     let resetBundle = Services.strings
  576.                               .createBundle("chrome://global/locale/resetProfile.properties");
  577.  
  578.     let message = resetBundle.formatStringFromName("resetUnusedProfile.message", [productName], 1);
  579.     let buttons = [
  580.       {
  581.         label:     resetBundle.formatStringFromName("resetProfile.resetButton.label", [productName], 1),
  582.         accessKey: resetBundle.GetStringFromName("resetProfile.resetButton.accesskey"),
  583.         callback: function () {
  584.           ResetProfile.openConfirmationDialog(win);
  585.         }
  586.       },
  587.     ];
  588.  
  589.     let nb = win.document.getElementById("global-notificationbox");
  590.     nb.appendNotification(message, "reset-unused-profile",
  591.                           "chrome://global/skin/icons/question-16.png",
  592.                           nb.PRIORITY_INFO_LOW, buttons);
  593.   },
  594.  
  595.   // the first browser window has finished initializing
  596.   _onFirstWindowLoaded: function BG__onFirstWindowLoaded(aWindow) {
  597. //@line 613 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  598.     // For windows seven, initialize the jump list module.
  599.     const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1";
  600.     if (WINTASKBAR_CONTRACTID in Cc &&
  601.         Cc[WINTASKBAR_CONTRACTID].getService(Ci.nsIWinTaskbar).available) {
  602.       let temp = {};
  603.       Cu.import("resource:///modules/WindowsJumpLists.jsm", temp);
  604.       temp.WinTaskbarJumpList.startup();
  605.     }
  606. //@line 622 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  607.  
  608.     this._trackSlowStartup();
  609.  
  610.     // Offer to reset a user's profile if it hasn't been used for 60 days.
  611.     const OFFER_PROFILE_RESET_INTERVAL_MS = 60 * 24 * 60 * 60 * 1000;
  612.     let lastUse = Services.appinfo.replacedLockTime;
  613.     if (lastUse &&
  614.         Date.now() - lastUse >= OFFER_PROFILE_RESET_INTERVAL_MS) {
  615.       this._resetUnusedProfileNotification();
  616.     }
  617.  
  618.     this._checkForOldBuildUpdates();
  619.   },
  620.  
  621.   /**
  622.    * Profile shutdown handler (contains profile cleanup routines).
  623.    * All components depending on Places should be shut down in
  624.    * _onPlacesShutdown() and not here.
  625.    */
  626.   _onProfileShutdown: function BG__onProfileShutdown() {
  627.     BrowserNewTabPreloader.uninit();
  628.     webappsUI.uninit();
  629.     SignInToWebsiteUX.uninit();
  630.     webrtcUI.uninit();
  631.     this._dispose();
  632.   },
  633.  
  634.   // All initial windows have opened.
  635.   _onWindowsRestored: function BG__onWindowsRestored() {
  636.     // Show update notification, if needed.
  637.     if (Services.prefs.prefHasUserValue("app.update.postupdate"))
  638.       this._showUpdateNotification();
  639.  
  640.     // Load the "more info" page for a locked places.sqlite
  641.     // This property is set earlier by places-database-locked topic.
  642.     if (this._isPlacesDatabaseLocked) {
  643.       this._showPlacesLockedNotificationBox();
  644.     }
  645.  
  646.     // If there are plugins installed that are outdated, and the user hasn't
  647.     // been warned about them yet, open the plugins update page.
  648.     if (Services.prefs.getBoolPref(PREF_PLUGINS_NOTIFYUSER))
  649.       this._showPluginUpdatePage();
  650.  
  651.     // For any add-ons that were installed disabled and can be enabled offer
  652.     // them to the user.
  653.     let changedIDs = AddonManager.getStartupChanges(AddonManager.STARTUP_CHANGE_INSTALLED);
  654.     if (changedIDs.length > 0) {
  655.       let win = this.getMostRecentBrowserWindow();
  656.       AddonManager.getAddonsByIDs(changedIDs, function(aAddons) {
  657.         aAddons.forEach(function(aAddon) {
  658.           // If the add-on isn't user disabled or can't be enabled then skip it.
  659.           if (!aAddon.userDisabled || !(aAddon.permissions & AddonManager.PERM_CAN_ENABLE))
  660.             return;
  661.  
  662.           win.openUILinkIn("about:newaddon?id=" + aAddon.id, "tab");
  663.         })
  664.       });
  665.     }
  666.  
  667.     // Perform default browser checking.
  668.     var shell;
  669.     try {
  670.       shell = Components.classes["@mozilla.org/browser/shell-service;1"]
  671.         .getService(Components.interfaces.nsIShellService);
  672.     } catch (e) { }
  673.     if (shell) {
  674. //@line 692 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  675.       let shouldCheck = shell.shouldCheckDefaultBrowser;
  676. //@line 694 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  677.       let willRecoverSession = false;
  678.       try {
  679.         let ss = Cc["@mozilla.org/browser/sessionstartup;1"].
  680.                  getService(Ci.nsISessionStartup);
  681.         willRecoverSession =
  682.           (ss.sessionType == Ci.nsISessionStartup.RECOVER_SESSION);
  683.       }
  684.       catch (ex) { /* never mind; suppose SessionStore is broken */ }
  685.  
  686.       let isDefault = shell.isDefaultBrowser(true, false); // startup check, check all assoc
  687.       try {
  688.         // Report default browser status on startup to telemetry
  689.         // so we can track whether we are the default.
  690.         Services.telemetry.getHistogramById("BROWSER_IS_USER_DEFAULT")
  691.                           .add(isDefault);
  692.       }
  693.       catch (ex) { /* Don't break the default prompt if telemetry is broken. */ }
  694.  
  695.       if (shouldCheck && !isDefault && !willRecoverSession) {
  696.         Services.tm.mainThread.dispatch(function() {
  697.           var win = this.getMostRecentBrowserWindow();
  698.           var brandBundle = win.document.getElementById("bundle_brand");
  699.           var shellBundle = win.document.getElementById("bundle_shell");
  700.  
  701.           var brandShortName = brandBundle.getString("brandShortName");
  702.           var promptTitle = shellBundle.getString("setDefaultBrowserTitle");
  703.           var promptMessage = shellBundle.getFormattedString("setDefaultBrowserMessage",
  704.                                                              [brandShortName]);
  705.           var checkboxLabel = shellBundle.getFormattedString("setDefaultBrowserDontAsk",
  706.                                                              [brandShortName]);
  707.           var checkEveryTime = { value: shouldCheck };
  708.           var ps = Services.prompt;
  709.           var rv = ps.confirmEx(win, promptTitle, promptMessage,
  710.                                 ps.STD_YES_NO_BUTTONS,
  711.                                 null, null, null, checkboxLabel, checkEveryTime);
  712.           if (rv == 0) {
  713.             var claimAllTypes = true;
  714. //@line 732 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  715.             try {
  716.               // In Windows 8, the UI for selecting default protocol is much
  717.               // nicer than the UI for setting file type associations. So we
  718.               // only show the protocol association screen on Windows 8.
  719.               // Windows 8 is version 6.2.
  720.               let version = Cc["@mozilla.org/system-info;1"]
  721.                               .getService(Ci.nsIPropertyBag2)
  722.                               .getProperty("version");
  723.               claimAllTypes = (parseFloat(version) < 6.2);
  724.             } catch (ex) { }
  725. //@line 743 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  726.             shell.setDefaultBrowser(claimAllTypes, false);
  727.           }
  728.           shell.shouldCheckDefaultBrowser = checkEveryTime.value;
  729.         }.bind(this), Ci.nsIThread.DISPATCH_NORMAL);
  730.       }
  731.     }
  732.   },
  733.  
  734.   _onQuitRequest: function BG__onQuitRequest(aCancelQuit, aQuitType) {
  735.     // If user has already dismissed quit request, then do nothing
  736.     if ((aCancelQuit instanceof Ci.nsISupportsPRBool) && aCancelQuit.data)
  737.       return;
  738.  
  739.     // There are several cases where we won't show a dialog here:
  740.     // 1. There is only 1 tab open in 1 window
  741.     // 2. The session will be restored at startup, indicated by
  742.     //    browser.startup.page == 3 or browser.sessionstore.resume_session_once == true
  743.     // 3. browser.warnOnQuit == false
  744.     // 4. The browser is currently in Private Browsing mode
  745.     // 5. The browser will be restarted.
  746.     //
  747.     // Otherwise these are the conditions and the associated dialogs that will be shown:
  748.     // 1. aQuitType == "lastwindow" or "quit" and browser.showQuitWarning == true
  749.     //    - The quit dialog will be shown
  750.     // 2. aQuitType == "lastwindow" && browser.tabs.warnOnClose == true
  751.     //    - The "closing multiple tabs" dialog will be shown
  752.     //
  753.     // aQuitType == "lastwindow" is overloaded. "lastwindow" is used to indicate
  754.     // "the last window is closing but we're not quitting (a non-browser window is open)"
  755.     // and also "we're quitting by closing the last window".
  756.  
  757.     if (aQuitType == "restart")
  758.       return;
  759.  
  760.     var windowcount = 0;
  761.     var pagecount = 0;
  762.     var browserEnum = Services.wm.getEnumerator("navigator:browser");
  763.     let allWindowsPrivate = true;
  764.     while (browserEnum.hasMoreElements()) {
  765.       // XXXbz should we skip closed windows here?
  766.       windowcount++;
  767.  
  768.       var browser = browserEnum.getNext();
  769.       if (!PrivateBrowsingUtils.isWindowPrivate(browser))
  770.         allWindowsPrivate = false;
  771.       var tabbrowser = browser.document.getElementById("content");
  772.       if (tabbrowser)
  773.         pagecount += tabbrowser.browsers.length - tabbrowser._numPinnedTabs;
  774.     }
  775.  
  776.     this._saveSession = false;
  777.     if (pagecount < 2)
  778.       return;
  779.  
  780.     if (!aQuitType)
  781.       aQuitType = "quit";
  782.  
  783.     var mostRecentBrowserWindow;
  784.  
  785.     // browser.warnOnQuit is a hidden global boolean to override all quit prompts
  786.     // browser.showQuitWarning specifically covers quitting
  787.     // browser.tabs.warnOnClose is the global "warn when closing multiple tabs" pref
  788.  
  789.     var sessionWillBeRestored = Services.prefs.getIntPref("browser.startup.page") == 3 ||
  790.                                 Services.prefs.getBoolPref("browser.sessionstore.resume_session_once");
  791.     if (sessionWillBeRestored || !Services.prefs.getBoolPref("browser.warnOnQuit"))
  792.       return;
  793.  
  794.     // On last window close or quit && showQuitWarning, we want to show the
  795.     // quit warning.
  796.     if (!Services.prefs.getBoolPref("browser.showQuitWarning")) {
  797.       if (aQuitType == "lastwindow") {
  798.         // If aQuitType is "lastwindow" and we aren't showing the quit warning,
  799.         // we should show the window closing warning instead. warnAboutClosing
  800.         // tabs checks browser.tabs.warnOnClose and returns if it's ok to close
  801.         // the window. It doesn't actually close the window.
  802.         mostRecentBrowserWindow = Services.wm.getMostRecentWindow("navigator:browser");
  803.         let allTabs = mostRecentBrowserWindow.gBrowser.closingTabsEnum.ALL;
  804.         aCancelQuit.data = !mostRecentBrowserWindow.gBrowser.warnAboutClosingTabs(allTabs)
  805.       }
  806.       return;
  807.     }
  808.  
  809.     // Never show a prompt inside private browsing mode
  810.     if (allWindowsPrivate)
  811.       return;
  812.  
  813.     var quitBundle = Services.strings.createBundle("chrome://browser/locale/quitDialog.properties");
  814.     var brandBundle = Services.strings.createBundle("chrome://branding/locale/brand.properties");
  815.  
  816.     var appName = brandBundle.GetStringFromName("brandShortName");
  817.     var quitTitleString = "quitDialogTitle";
  818.     var quitDialogTitle = quitBundle.formatStringFromName(quitTitleString, [appName], 1);
  819.  
  820.     var message;
  821.     if (windowcount == 1)
  822.       message = quitBundle.formatStringFromName("messageNoWindows",
  823.                                                 [appName], 1);
  824.     else
  825.       message = quitBundle.formatStringFromName("message",
  826.                                                 [appName], 1);
  827.  
  828.     var promptService = Services.prompt;
  829.  
  830.     var flags = promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_0 +
  831.                 promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_1 +
  832.                 promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_2 +
  833.                 promptService.BUTTON_POS_0_DEFAULT;
  834.  
  835.     var neverAsk = {value:false};
  836.     var button0Title = quitBundle.GetStringFromName("saveTitle");
  837.     var button1Title = quitBundle.GetStringFromName("cancelTitle");
  838.     var button2Title = quitBundle.GetStringFromName("quitTitle");
  839.     var neverAskText = quitBundle.GetStringFromName("neverAsk2");
  840.  
  841.     // This wouldn't have been set above since we shouldn't be here for
  842.     // aQuitType == "lastwindow"
  843.     mostRecentBrowserWindow = Services.wm.getMostRecentWindow("navigator:browser");
  844.  
  845.     var buttonChoice =
  846.       promptService.confirmEx(mostRecentBrowserWindow, quitDialogTitle, message,
  847.                               flags, button0Title, button1Title, button2Title,
  848.                               neverAskText, neverAsk);
  849.  
  850.     switch (buttonChoice) {
  851.     case 2: // Quit
  852.       if (neverAsk.value)
  853.         Services.prefs.setBoolPref("browser.showQuitWarning", false);
  854.       break;
  855.     case 1: // Cancel
  856.       aCancelQuit.QueryInterface(Ci.nsISupportsPRBool);
  857.       aCancelQuit.data = true;
  858.       break;
  859.     case 0: // Save & Quit
  860.       this._saveSession = true;
  861.       if (neverAsk.value) {
  862.         // always save state when shutting down
  863.         Services.prefs.setIntPref("browser.startup.page", 3);
  864.       }
  865.       break;
  866.     }
  867.   },
  868.  
  869.   _showUpdateNotification: function BG__showUpdateNotification() {
  870.     Services.prefs.clearUserPref("app.update.postupdate");
  871.  
  872.     var um = Cc["@mozilla.org/updates/update-manager;1"].
  873.              getService(Ci.nsIUpdateManager);
  874.     try {
  875.       // If the updates.xml file is deleted then getUpdateAt will throw.
  876.       var update = um.getUpdateAt(0).QueryInterface(Ci.nsIPropertyBag);
  877.     }
  878.     catch (e) {
  879.       // This should never happen.
  880.       Cu.reportError("Unable to find update: " + e);
  881.       return;
  882.     }
  883.  
  884.     var actions = update.getProperty("actions");
  885.     if (!actions || actions.indexOf("silent") != -1)
  886.       return;
  887.  
  888.     var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].
  889.                     getService(Ci.nsIURLFormatter);
  890.     var browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
  891.     var brandBundle = Services.strings.createBundle("chrome://branding/locale/brand.properties");
  892.     var appName = brandBundle.GetStringFromName("brandShortName");
  893.  
  894.     function getNotifyString(aPropData) {
  895.       var propValue = update.getProperty(aPropData.propName);
  896.       if (!propValue) {
  897.         if (aPropData.prefName)
  898.           propValue = formatter.formatURLPref(aPropData.prefName);
  899.         else if (aPropData.stringParams)
  900.           propValue = browserBundle.formatStringFromName(aPropData.stringName,
  901.                                                          aPropData.stringParams,
  902.                                                          aPropData.stringParams.length);
  903.         else
  904.           propValue = browserBundle.GetStringFromName(aPropData.stringName);
  905.       }
  906.       return propValue;
  907.     }
  908.  
  909.     if (actions.indexOf("showNotification") != -1) {
  910.       let text = getNotifyString({propName: "notificationText",
  911.                                   stringName: "puNotifyText",
  912.                                   stringParams: [appName]});
  913.       let url = getNotifyString({propName: "notificationURL",
  914.                                  prefName: "startup.homepage_override_url"});
  915.       let label = getNotifyString({propName: "notificationButtonLabel",
  916.                                    stringName: "pu.notifyButton.label"});
  917.       let key = getNotifyString({propName: "notificationButtonAccessKey",
  918.                                  stringName: "pu.notifyButton.accesskey"});
  919.  
  920.       let win = this.getMostRecentBrowserWindow();
  921.       let notifyBox = win.gBrowser.getNotificationBox();
  922.  
  923.       let buttons = [
  924.                       {
  925.                         label:     label,
  926.                         accessKey: key,
  927.                         popup:     null,
  928.                         callback: function(aNotificationBar, aButton) {
  929.                           win.openUILinkIn(url, "tab");
  930.                         }
  931.                       }
  932.                     ];
  933.  
  934.       let notification = notifyBox.appendNotification(text, "post-update-notification",
  935.                                                       null, notifyBox.PRIORITY_INFO_LOW,
  936.                                                       buttons);
  937.       notification.persistence = -1; // Until user closes it
  938.     }
  939.  
  940.     if (actions.indexOf("showAlert") == -1)
  941.       return;
  942.  
  943.     let notifier;
  944.     try {
  945.       notifier = Cc["@mozilla.org/alerts-service;1"].
  946.                  getService(Ci.nsIAlertsService);
  947.     }
  948.     catch (e) {
  949.       // nsIAlertsService is not available for this platform
  950.       return;
  951.     }
  952.  
  953.     let title = getNotifyString({propName: "alertTitle",
  954.                                  stringName: "puAlertTitle",
  955.                                  stringParams: [appName]});
  956.     let text = getNotifyString({propName: "alertText",
  957.                                 stringName: "puAlertText",
  958.                                 stringParams: [appName]});
  959.     let url = getNotifyString({propName: "alertURL",
  960.                                prefName: "startup.homepage_override_url"});
  961.  
  962.     var self = this;
  963.     function clickCallback(subject, topic, data) {
  964.       // This callback will be called twice but only once with this topic
  965.       if (topic != "alertclickcallback")
  966.         return;
  967.       let win = self.getMostRecentBrowserWindow();
  968.       win.openUILinkIn(data, "tab");
  969.     }
  970.  
  971.     try {
  972.       // This will throw NS_ERROR_NOT_AVAILABLE if the notification cannot
  973.       // be displayed per the idl.
  974.       notifier.showAlertNotification(null, title, text,
  975.                                      true, url, clickCallback);
  976.     }
  977.     catch (e) {
  978.     }
  979.   },
  980.  
  981.   _showPluginUpdatePage: function BG__showPluginUpdatePage() {
  982.     Services.prefs.setBoolPref(PREF_PLUGINS_NOTIFYUSER, false);
  983.  
  984.     var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].
  985.                     getService(Ci.nsIURLFormatter);
  986.     var updateUrl = formatter.formatURLPref(PREF_PLUGINS_UPDATEURL);
  987.  
  988.     var win = this.getMostRecentBrowserWindow();
  989.     win.openUILinkIn(updateUrl, "tab");
  990.   },
  991.  
  992.   /**
  993.    * Initialize Places
  994.    * - imports the bookmarks html file if bookmarks database is empty, try to
  995.    *   restore bookmarks from a JSON backup if the backend indicates that the
  996.    *   database was corrupt.
  997.    *
  998.    * These prefs can be set up by the frontend:
  999.    *
  1000.    * WARNING: setting these preferences to true will overwite existing bookmarks
  1001.    *
  1002.    * - browser.places.importBookmarksHTML
  1003.    *   Set to true will import the bookmarks.html file from the profile folder.
  1004.    * - browser.places.smartBookmarksVersion
  1005.    *   Set during HTML import to indicate that Smart Bookmarks were created.
  1006.    *   Set to -1 to disable Smart Bookmarks creation.
  1007.    *   Set to 0 to restore current Smart Bookmarks.
  1008.    * - browser.bookmarks.restore_default_bookmarks
  1009.    *   Set to true by safe-mode dialog to indicate we must restore default
  1010.    *   bookmarks.
  1011.    */
  1012.   _initPlaces: function BG__initPlaces(aInitialMigrationPerformed) {
  1013.     // We must instantiate the history service since it will tell us if we
  1014.     // need to import or restore bookmarks due to first-run, corruption or
  1015.     // forced migration (due to a major schema change).
  1016.     // If the database is corrupt or has been newly created we should
  1017.     // import bookmarks.
  1018.     var dbStatus = PlacesUtils.history.databaseStatus;
  1019.     var importBookmarks = !aInitialMigrationPerformed &&
  1020.                           (dbStatus == PlacesUtils.history.DATABASE_STATUS_CREATE ||
  1021.                            dbStatus == PlacesUtils.history.DATABASE_STATUS_CORRUPT);
  1022.  
  1023.     // Check if user or an extension has required to import bookmarks.html
  1024.     var importBookmarksHTML = false;
  1025.     try {
  1026.       importBookmarksHTML =
  1027.         Services.prefs.getBoolPref("browser.places.importBookmarksHTML");
  1028.       if (importBookmarksHTML)
  1029.         importBookmarks = true;
  1030.     } catch(ex) {}
  1031.  
  1032.     Task.spawn(function() {
  1033.       // Check if Safe Mode or the user has required to restore bookmarks from
  1034.       // default profile's bookmarks.html
  1035.       var restoreDefaultBookmarks = false;
  1036.       try {
  1037.         restoreDefaultBookmarks =
  1038.           Services.prefs.getBoolPref("browser.bookmarks.restore_default_bookmarks");
  1039.         if (restoreDefaultBookmarks) {
  1040.           // Ensure that we already have a bookmarks backup for today.
  1041.           yield this._backupBookmarks();
  1042.           importBookmarks = true;
  1043.         }
  1044.       } catch(ex) {}
  1045.  
  1046.       // If the user did not require to restore default bookmarks, or import
  1047.       // from bookmarks.html, we will try to restore from JSON
  1048.       if (importBookmarks && !restoreDefaultBookmarks && !importBookmarksHTML) {
  1049.         // get latest JSON backup
  1050.         var bookmarksBackupFile = yield PlacesBackups.getMostRecent("json");
  1051.         if (bookmarksBackupFile) {
  1052.           // restore from JSON backup
  1053.           yield BookmarkJSONUtils.importFromFile(bookmarksBackupFile, true);
  1054.           importBookmarks = false;
  1055.         }
  1056.         else {
  1057.           // We have created a new database but we don't have any backup available
  1058.           importBookmarks = true;
  1059.           var dirService = Cc["@mozilla.org/file/directory_service;1"].
  1060.                            getService(Ci.nsIProperties);
  1061.           var bookmarksHTMLFile = dirService.get("BMarks", Ci.nsILocalFile);
  1062.           if (bookmarksHTMLFile.exists()) {
  1063.             // If bookmarks.html is available in current profile import it...
  1064.             importBookmarksHTML = true;
  1065.           }
  1066.           else {
  1067.             // ...otherwise we will restore defaults
  1068.             restoreDefaultBookmarks = true;
  1069.           }
  1070.         }
  1071.       }
  1072.  
  1073.       // If bookmarks are not imported, then initialize smart bookmarks.  This
  1074.       // happens during a common startup.
  1075.       // Otherwise, if any kind of import runs, smart bookmarks creation should be
  1076.       // delayed till the import operations has finished.  Not doing so would
  1077.       // cause them to be overwritten by the newly imported bookmarks.
  1078.       if (!importBookmarks) {
  1079.         // Now apply distribution customized bookmarks.
  1080.         // This should always run after Places initialization.
  1081.         this._distributionCustomizer.applyBookmarks();
  1082.         this.ensurePlacesDefaultQueriesInitialized();
  1083.       }
  1084.       else {
  1085.         // An import operation is about to run.
  1086.         // Don't try to recreate smart bookmarks if autoExportHTML is true or
  1087.         // smart bookmarks are disabled.
  1088.         var autoExportHTML = false;
  1089.         try {
  1090.           autoExportHTML = Services.prefs.getBoolPref("browser.bookmarks.autoExportHTML");
  1091.         } catch(ex) {}
  1092.         var smartBookmarksVersion = 0;
  1093.         try {
  1094.           smartBookmarksVersion = Services.prefs.getIntPref("browser.places.smartBookmarksVersion");
  1095.         } catch(ex) {}
  1096.         if (!autoExportHTML && smartBookmarksVersion != -1)
  1097.           Services.prefs.setIntPref("browser.places.smartBookmarksVersion", 0);
  1098.  
  1099.         // Get bookmarks.html file location
  1100.         var dirService = Cc["@mozilla.org/file/directory_service;1"].
  1101.                          getService(Ci.nsIProperties);
  1102.  
  1103.         var bookmarksURI = null;
  1104.         if (restoreDefaultBookmarks) {
  1105.           // User wants to restore bookmarks.html file from default profile folder
  1106.           bookmarksURI = NetUtil.newURI("resource:///defaults/profile/bookmarks.html");
  1107.         }
  1108.         else {
  1109.           var bookmarksFile = dirService.get("BMarks", Ci.nsILocalFile);
  1110.           if (bookmarksFile.exists())
  1111.             bookmarksURI = NetUtil.newURI(bookmarksFile);
  1112.         }
  1113.  
  1114.         if (bookmarksURI) {
  1115.           // Import from bookmarks.html file.
  1116.           try {
  1117.             BookmarkHTMLUtils.importFromURL(bookmarksURI.spec, true).then(null,
  1118.               function onFailure() {
  1119.                 Cu.reportError("Bookmarks.html file could be corrupt.");
  1120.               }
  1121.             ).then(
  1122.               function onComplete() {
  1123.                 // Now apply distribution customized bookmarks.
  1124.                 // This should always run after Places initialization.
  1125.                 this._distributionCustomizer.applyBookmarks();
  1126.                 // Ensure that smart bookmarks are created once the operation is
  1127.                 // complete.
  1128.                 this.ensurePlacesDefaultQueriesInitialized();
  1129.               }.bind(this)
  1130.             );
  1131.           } catch (err) {
  1132.             Cu.reportError("Bookmarks.html file could be corrupt. " + err);
  1133.           }
  1134.         }
  1135.         else {
  1136.           Cu.reportError("Unable to find bookmarks.html file.");
  1137.         }
  1138.  
  1139.         // Reset preferences, so we won't try to import again at next run
  1140.         if (importBookmarksHTML)
  1141.           Services.prefs.setBoolPref("browser.places.importBookmarksHTML", false);
  1142.         if (restoreDefaultBookmarks)
  1143.           Services.prefs.setBoolPref("browser.bookmarks.restore_default_bookmarks",
  1144.                                      false);
  1145.       }
  1146.  
  1147.       // Initialize bookmark archiving on idle.
  1148.       // Once a day, either on idle or shutdown, bookmarks are backed up.
  1149.       if (!this._isIdleObserver) {
  1150.         this._idleService.addIdleObserver(this, BOOKMARKS_BACKUP_IDLE_TIME);
  1151.         this._isIdleObserver = true;
  1152.       }
  1153.  
  1154.       Services.obs.notifyObservers(null, "places-browser-init-complete", "");
  1155.     }.bind(this));
  1156.   },
  1157.  
  1158.   /**
  1159.    * Places shut-down tasks
  1160.    * - back up bookmarks if needed.
  1161.    * - export bookmarks as HTML, if so configured.
  1162.    * - finalize components depending on Places.
  1163.    */
  1164.   _onPlacesShutdown: function BG__onPlacesShutdown() {
  1165.     this._sanitizer.onShutdown();
  1166.     PageThumbs.uninit();
  1167.  
  1168.     if (this._isIdleObserver) {
  1169.       this._idleService.removeIdleObserver(this, BOOKMARKS_BACKUP_IDLE_TIME);
  1170.       this._isIdleObserver = false;
  1171.     }
  1172.  
  1173.     let waitingForBackupToComplete = true;
  1174.     this._backupBookmarks().then(
  1175.       function onSuccess() {
  1176.         waitingForBackupToComplete = false;
  1177.       },
  1178.       function onFailure() {
  1179.         Cu.reportError("Unable to backup bookmarks.");
  1180.         waitingForBackupToComplete = false;
  1181.       }
  1182.     );
  1183.  
  1184.     // Backup bookmarks to bookmarks.html to support apps that depend
  1185.     // on the legacy format.
  1186.     let waitingForHTMLExportToComplete = false;
  1187.     // If this fails to get the preference value, we don't export.
  1188.     if (Services.prefs.getBoolPref("browser.bookmarks.autoExportHTML")) {
  1189.       // Exceptionally, since this is a non-default setting and HTML format is
  1190.       // discouraged in favor of the JSON backups, we spin the event loop on
  1191.       // shutdown, to wait for the export to finish.  We cannot safely spin
  1192.       // the event loop on shutdown until we include a watchdog to prevent
  1193.       // potential hangs (bug 518683).  The asynchronous shutdown operations
  1194.       // will then be handled by a shutdown service (bug 435058).
  1195.       waitingForHTMLExportToComplete = true;
  1196.       BookmarkHTMLUtils.exportToFile(Services.dirsvc.get("BMarks", Ci.nsIFile)).then(
  1197.         function onSuccess() {
  1198.           waitingForHTMLExportToComplete = false;
  1199.         },
  1200.         function onFailure() {
  1201.           Cu.reportError("Unable to auto export html.");
  1202.           waitingForHTMLExportToComplete = false;
  1203.         }
  1204.       );
  1205.     }
  1206.  
  1207.     // The events loop should spin at least once because waitingForBackupToComplete
  1208.     // is true before checking whether backup should be made.
  1209.     let thread = Services.tm.currentThread;
  1210.     while (waitingForBackupToComplete || waitingForHTMLExportToComplete) {
  1211.       thread.processNextEvent(true);
  1212.     }
  1213.   },
  1214.  
  1215.   /**
  1216.    * Backup bookmarks.
  1217.    */
  1218.   _backupBookmarks: function BG__backupBookmarks() {
  1219.     return Task.spawn(function() {
  1220.       let lastBackupFile = yield PlacesBackups.getMostRecentBackup();
  1221.       // Should backup bookmarks if there are no backups or the maximum
  1222.       // interval between backups elapsed.
  1223.       if (!lastBackupFile ||
  1224.           new Date() - PlacesBackups.getDateForFile(lastBackupFile) > BOOKMARKS_BACKUP_INTERVAL) {
  1225.         let maxBackups = BOOKMARKS_BACKUP_MAX_BACKUPS;
  1226.         try {
  1227.           maxBackups = Services.prefs.getIntPref("browser.bookmarks.max_backups");
  1228.         }
  1229.         catch(ex) { /* Use default. */ }
  1230.  
  1231.         yield PlacesBackups.create(maxBackups); // Don't force creation.
  1232.       }
  1233.     });
  1234.   },
  1235.  
  1236.   /**
  1237.    * Show the notificationBox for a locked places database.
  1238.    */
  1239.   _showPlacesLockedNotificationBox: function BG__showPlacesLockedNotificationBox() {
  1240.     var brandBundle  = Services.strings.createBundle("chrome://branding/locale/brand.properties");
  1241.     var applicationName = brandBundle.GetStringFromName("brandShortName");
  1242.     var placesBundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties");
  1243.     var title = placesBundle.GetStringFromName("lockPrompt.title");
  1244.     var text = placesBundle.formatStringFromName("lockPrompt.text", [applicationName], 1);
  1245.     var buttonText = placesBundle.GetStringFromName("lockPromptInfoButton.label");
  1246.     var accessKey = placesBundle.GetStringFromName("lockPromptInfoButton.accessKey");
  1247.  
  1248.     var helpTopic = "places-locked";
  1249.     var url = Cc["@mozilla.org/toolkit/URLFormatterService;1"].
  1250.               getService(Components.interfaces.nsIURLFormatter).
  1251.               formatURLPref("app.support.baseURL");
  1252.     url += helpTopic;
  1253.  
  1254.     var win = this.getMostRecentBrowserWindow();
  1255.  
  1256.     var buttons = [
  1257.                     {
  1258.                       label:     buttonText,
  1259.                       accessKey: accessKey,
  1260.                       popup:     null,
  1261.                       callback:  function(aNotificationBar, aButton) {
  1262.                         win.openUILinkIn(url, "tab");
  1263.                       }
  1264.                     }
  1265.                   ];
  1266.  
  1267.     var notifyBox = win.gBrowser.getNotificationBox();
  1268.     var notification = notifyBox.appendNotification(text, title, null,
  1269.                                                     notifyBox.PRIORITY_CRITICAL_MEDIUM,
  1270.                                                     buttons);
  1271.     notification.persistence = -1; // Until user closes it
  1272.   },
  1273.  
  1274.   _migrateUI: function BG__migrateUI() {
  1275.     const UI_VERSION = 15;
  1276.     const BROWSER_DOCURL = "chrome://browser/content/browser.xul#";
  1277.  
  1278.     let wasCustomizedAndOnAustralis = Services.prefs.prefHasUserValue("browser.uiCustomization.state");
  1279.     let currentUIVersion = 0;
  1280.     try {
  1281.       currentUIVersion = Services.prefs.getIntPref("browser.migration.version");
  1282.     } catch(ex) {}
  1283.     if (!wasCustomizedAndOnAustralis && currentUIVersion >= UI_VERSION)
  1284.       return;
  1285.  
  1286.     this._rdf = Cc["@mozilla.org/rdf/rdf-service;1"].getService(Ci.nsIRDFService);
  1287.     this._dataSource = this._rdf.GetDataSource("rdf:local-store");
  1288.  
  1289.     function migrateDetector() {
  1290.       let detector = null;    
  1291.       try {
  1292.         detector = Services.prefs.getComplexValue("intl.charset.detector",
  1293.                                                   Ci.nsIPrefLocalizedString).data;
  1294.       } catch (ex) {}
  1295.       if (!(detector == "" ||
  1296.             detector == "ja_parallel_state_machine" ||
  1297.             detector == "ruprob" ||
  1298.             detector == "ukprob")) {
  1299.         // If the encoding detector pref value is not reachable from the UI,
  1300.         // reset to default (varies by localization).
  1301.         Services.prefs.clearUserPref("intl.charset.detector");
  1302.       }
  1303.     }
  1304.  
  1305.     // No version check for this as this code should run until we have Australis everywhere:
  1306.     if (wasCustomizedAndOnAustralis) {
  1307.       // This profile's been on australis! If it's missing the back/fwd button
  1308.       // or go/stop/reload button, then put them back:
  1309.       let currentsetResource = this._rdf.GetResource("currentset");
  1310.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1311.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1312.       let oldCurrentset = currentset;
  1313.       if (currentset) {
  1314.         if (currentset.indexOf("unified-back-forward-button") == -1) {
  1315.           currentset = currentset.replace("urlbar-container",
  1316.                                           "unified-back-forward-button,urlbar-container");
  1317.         }
  1318.         if (currentset.indexOf("reload-button") == -1) {
  1319.           currentset = currentset.replace("urlbar-container", "urlbar-container,reload-button");
  1320.         }
  1321.         if (currentset.indexOf("stop-button") == -1) {
  1322.           currentset = currentset.replace("reload-button", "reload-button,stop-button");
  1323.         }
  1324.       }
  1325.       Services.prefs.clearUserPref("browser.uiCustomization.state");
  1326.  
  1327.       if (oldCurrentset != currentset) {
  1328.         this._setPersist(toolbarResource, currentsetResource, currentset);
  1329.       }
  1330.  
  1331.       // Taking the opportunity to do the version 15 action here as well to
  1332.       // address profiles that have been on Australis.
  1333.       migrateDetector();
  1334.  
  1335.       // If we don't have anything else to do, we can bail here:
  1336.       if (currentUIVersion >= UI_VERSION) {
  1337.         if (this._dirty) {
  1338.           this._dataSource.QueryInterface(Ci.nsIRDFRemoteDataSource).Flush();
  1339.         }
  1340.         delete this._rdf;
  1341.         delete this._dataSource;
  1342.         return;
  1343.       }
  1344.     }
  1345.  
  1346.  
  1347.     this._dirty = false;
  1348.  
  1349.     if (currentUIVersion < 2) {
  1350.       // This code adds the customizable bookmarks button.
  1351.       let currentsetResource = this._rdf.GetResource("currentset");
  1352.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1353.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1354.       // Need to migrate only if toolbar is customized and the element is not found.
  1355.       if (currentset &&
  1356.           currentset.indexOf("bookmarks-menu-button-container") == -1) {
  1357.         currentset += ",bookmarks-menu-button-container";
  1358.         this._setPersist(toolbarResource, currentsetResource, currentset);
  1359.       }
  1360.     }
  1361.  
  1362.     if (currentUIVersion < 3) {
  1363.       // This code merges the reload/stop/go button into the url bar.
  1364.       let currentsetResource = this._rdf.GetResource("currentset");
  1365.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1366.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1367.       // Need to migrate only if toolbar is customized and all 3 elements are found.
  1368.       if (currentset &&
  1369.           currentset.indexOf("reload-button") != -1 &&
  1370.           currentset.indexOf("stop-button") != -1 &&
  1371.           currentset.indexOf("urlbar-container") != -1 &&
  1372.           currentset.indexOf("urlbar-container,reload-button,stop-button") == -1) {
  1373.         currentset = currentset.replace(/(^|,)reload-button($|,)/, "$1$2")
  1374.                                .replace(/(^|,)stop-button($|,)/, "$1$2")
  1375.                                .replace(/(^|,)urlbar-container($|,)/,
  1376.                                         "$1urlbar-container,reload-button,stop-button$2");
  1377.         this._setPersist(toolbarResource, currentsetResource, currentset);
  1378.       }
  1379.     }
  1380.  
  1381.     if (currentUIVersion < 4) {
  1382.       // This code moves the home button to the immediate left of the bookmarks menu button.
  1383.       let currentsetResource = this._rdf.GetResource("currentset");
  1384.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1385.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1386.       // Need to migrate only if toolbar is customized and the elements are found.
  1387.       if (currentset &&
  1388.           currentset.indexOf("home-button") != -1 &&
  1389.           currentset.indexOf("bookmarks-menu-button-container") != -1) {
  1390.         currentset = currentset.replace(/(^|,)home-button($|,)/, "$1$2")
  1391.                                .replace(/(^|,)bookmarks-menu-button-container($|,)/,
  1392.                                         "$1home-button,bookmarks-menu-button-container$2");
  1393.         this._setPersist(toolbarResource, currentsetResource, currentset);
  1394.       }
  1395.     }
  1396.  
  1397.     if (currentUIVersion < 5) {
  1398.       // This code uncollapses PersonalToolbar if its collapsed status is not
  1399.       // persisted, and user customized it or changed default bookmarks.
  1400.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "PersonalToolbar");
  1401.       let collapsedResource = this._rdf.GetResource("collapsed");
  1402.       let collapsed = this._getPersist(toolbarResource, collapsedResource);
  1403.       // If the user does not have a persisted value for the toolbar's
  1404.       // "collapsed" attribute, try to determine whether it's customized.
  1405.       if (collapsed === null) {
  1406.         // We consider the toolbar customized if it has more than
  1407.         // 3 children, or if it has a persisted currentset value.
  1408.         let currentsetResource = this._rdf.GetResource("currentset");
  1409.         let toolbarIsCustomized = !!this._getPersist(toolbarResource,
  1410.                                                      currentsetResource);
  1411.         function getToolbarFolderCount() {
  1412.           let toolbarFolder =
  1413.             PlacesUtils.getFolderContents(PlacesUtils.toolbarFolderId).root;
  1414.           let toolbarChildCount = toolbarFolder.childCount;
  1415.           toolbarFolder.containerOpen = false;
  1416.           return toolbarChildCount;
  1417.         }
  1418.  
  1419.         if (toolbarIsCustomized || getToolbarFolderCount() > 3) {
  1420.           this._setPersist(toolbarResource, collapsedResource, "false");
  1421.         }
  1422.       }
  1423.     }
  1424.  
  1425.     if (currentUIVersion < 6) {
  1426.       // convert tabsontop attribute to pref
  1427.       let toolboxResource = this._rdf.GetResource(BROWSER_DOCURL + "navigator-toolbox");
  1428.       let tabsOnTopResource = this._rdf.GetResource("tabsontop");
  1429.       let tabsOnTopAttribute = this._getPersist(toolboxResource, tabsOnTopResource);
  1430.       if (tabsOnTopAttribute)
  1431.         Services.prefs.setBoolPref("browser.tabs.onTop", tabsOnTopAttribute == "true");
  1432.     }
  1433.  
  1434.     // Migration at version 7 only occurred for users who wanted to try the new
  1435.     // Downloads Panel feature before its release. Since migration at version
  1436.     // 9 adds the button by default, this step has been removed.
  1437.  
  1438.     if (currentUIVersion < 8) {
  1439.       // Reset homepage pref for users who have it set to google.com/firefox
  1440.       let uri = Services.prefs.getComplexValue("browser.startup.homepage",
  1441.                                                Ci.nsIPrefLocalizedString).data;
  1442.       if (uri && /^https?:\/\/(www\.)?google(\.\w{2,3}){1,2}\/firefox\/?$/.test(uri)) {
  1443.         Services.prefs.clearUserPref("browser.startup.homepage");
  1444.       }
  1445.     }
  1446.  
  1447.     if (currentUIVersion < 9) {
  1448.       // This code adds the customizable downloads buttons.
  1449.       let currentsetResource = this._rdf.GetResource("currentset");
  1450.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1451.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1452.  
  1453.       // Since the Downloads button is located in the navigation bar by default,
  1454.       // migration needs to happen only if the toolbar was customized using a
  1455.       // previous UI version, and the button was not already placed on the
  1456.       // toolbar manually.
  1457.       if (currentset &&
  1458.           currentset.indexOf("downloads-button") == -1) {
  1459.         // The element is added either after the search bar or before the home
  1460.         // button. As a last resort, the element is added just before the
  1461.         // non-customizable window controls.
  1462.         if (currentset.indexOf("search-container") != -1) {
  1463.           currentset = currentset.replace(/(^|,)search-container($|,)/,
  1464.                                           "$1search-container,downloads-button$2")
  1465.         } else if (currentset.indexOf("home-button") != -1) {
  1466.           currentset = currentset.replace(/(^|,)home-button($|,)/,
  1467.                                           "$1downloads-button,home-button$2")
  1468.         } else {
  1469.           currentset = currentset.replace(/(^|,)window-controls($|,)/,
  1470.                                           "$1downloads-button,window-controls$2")
  1471.         }
  1472.         this._setPersist(toolbarResource, currentsetResource, currentset);
  1473.       }
  1474.     }
  1475.  
  1476. //@line 1494 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  1477.     if (currentUIVersion < 10) {
  1478.       // For Windows systems with display set to > 96dpi (i.e. systemDefaultScale
  1479.       // will return a value > 1.0), we want to discard any saved full-zoom settings,
  1480.       // as we'll now be scaling the content according to the system resolution
  1481.       // scale factor (Windows "logical DPI" setting)
  1482.       let sm = Cc["@mozilla.org/gfx/screenmanager;1"].getService(Ci.nsIScreenManager);
  1483.       if (sm.systemDefaultScale > 1.0) {
  1484.         let cps2 = Cc["@mozilla.org/content-pref/service;1"].
  1485.                    getService(Ci.nsIContentPrefService2);
  1486.         cps2.removeByName("browser.content.full-zoom", null);
  1487.       }
  1488.     }
  1489. //@line 1507 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  1490.  
  1491.     if (currentUIVersion < 11) {
  1492.       Services.prefs.clearUserPref("dom.disable_window_move_resize");
  1493.       Services.prefs.clearUserPref("dom.disable_window_flip");
  1494.       Services.prefs.clearUserPref("dom.event.contextmenu.enabled");
  1495.       Services.prefs.clearUserPref("javascript.enabled");
  1496.       Services.prefs.clearUserPref("permissions.default.image");
  1497.     }
  1498.  
  1499.     if (currentUIVersion < 12) {
  1500.       // Remove bookmarks-menu-button-container, then place
  1501.       // bookmarks-menu-button into its position.
  1502.       let currentsetResource = this._rdf.GetResource("currentset");
  1503.       let toolbarResource = this._rdf.GetResource(BROWSER_DOCURL + "nav-bar");
  1504.       let currentset = this._getPersist(toolbarResource, currentsetResource);
  1505.       // Need to migrate only if toolbar is customized.
  1506.       if (currentset) {
  1507.         if (currentset.contains("bookmarks-menu-button-container")) {
  1508.           currentset = currentset.replace(/(^|,)bookmarks-menu-button-container($|,)/,
  1509.                                           "$1bookmarks-menu-button$2");
  1510.           this._setPersist(toolbarResource, currentsetResource, currentset);
  1511.         }
  1512.       }
  1513.     }
  1514.  
  1515.     if (currentUIVersion < 13) {
  1516.       try {
  1517.         if (Services.prefs.getBoolPref("plugins.hide_infobar_for_missing_plugin"))
  1518.           Services.prefs.setBoolPref("plugins.notifyMissingFlash", false);
  1519.       }
  1520.       catch (ex) {}
  1521.     }
  1522.  
  1523.     if (currentUIVersion < 14) {
  1524.       // DOM Storage doesn't specially handle about: pages anymore.
  1525.       let path = OS.Path.join(OS.Constants.Path.profileDir,
  1526.                               "chromeappsstore.sqlite");
  1527.       OS.File.remove(path);
  1528.     }
  1529.  
  1530.     // Reusing the version 15, which is no longer in use on m-c, on Holly.
  1531.     // This fails if the user has used Australis with this profile without
  1532.     // customization and then gone back no the non-Australis version stream.
  1533.     // However, the situation will fix itself once Australis reaches the user.
  1534.     if (currentUIVersion < 15) {
  1535.       migrateDetector();
  1536.     }
  1537.  
  1538.     if (this._dirty)
  1539.       this._dataSource.QueryInterface(Ci.nsIRDFRemoteDataSource).Flush();
  1540.  
  1541.     delete this._rdf;
  1542.     delete this._dataSource;
  1543.  
  1544.     // Update the migration version.
  1545.     Services.prefs.setIntPref("browser.migration.version", UI_VERSION);
  1546.   },
  1547.  
  1548.   _getPersist: function BG__getPersist(aSource, aProperty) {
  1549.     var target = this._dataSource.GetTarget(aSource, aProperty, true);
  1550.     if (target instanceof Ci.nsIRDFLiteral)
  1551.       return target.Value;
  1552.     return null;
  1553.   },
  1554.  
  1555.   _setPersist: function BG__setPersist(aSource, aProperty, aTarget) {
  1556.     this._dirty = true;
  1557.     try {
  1558.       var oldTarget = this._dataSource.GetTarget(aSource, aProperty, true);
  1559.       if (oldTarget) {
  1560.         if (aTarget)
  1561.           this._dataSource.Change(aSource, aProperty, oldTarget, this._rdf.GetLiteral(aTarget));
  1562.         else
  1563.           this._dataSource.Unassert(aSource, aProperty, oldTarget);
  1564.       }
  1565.       else {
  1566.         this._dataSource.Assert(aSource, aProperty, this._rdf.GetLiteral(aTarget), true);
  1567.       }
  1568.  
  1569.       // Add the entry to the persisted set for this document if it's not there.
  1570.       // This code is mostly borrowed from XULDocument::Persist.
  1571.       let docURL = aSource.ValueUTF8.split("#")[0];
  1572.       let docResource = this._rdf.GetResource(docURL);
  1573.       let persistResource = this._rdf.GetResource("http://home.netscape.com/NC-rdf#persist");
  1574.       if (!this._dataSource.HasAssertion(docResource, persistResource, aSource, true)) {
  1575.         this._dataSource.Assert(docResource, persistResource, aSource, true);
  1576.       }
  1577.     }
  1578.     catch(ex) {}
  1579.   },
  1580.  
  1581.   // ------------------------------
  1582.   // public nsIBrowserGlue members
  1583.   // ------------------------------
  1584.  
  1585.   sanitize: function BG_sanitize(aParentWindow) {
  1586.     this._sanitizer.sanitize(aParentWindow);
  1587.   },
  1588.  
  1589.   ensurePlacesDefaultQueriesInitialized:
  1590.   function BG_ensurePlacesDefaultQueriesInitialized() {
  1591.     // This is actual version of the smart bookmarks, must be increased every
  1592.     // time smart bookmarks change.
  1593.     // When adding a new smart bookmark below, its newInVersion property must
  1594.     // be set to the version it has been added in, we will compare its value
  1595.     // to users' smartBookmarksVersion and add new smart bookmarks without
  1596.     // recreating old deleted ones.
  1597.     const SMART_BOOKMARKS_VERSION = 6;
  1598.     const SMART_BOOKMARKS_ANNO = "Places/SmartBookmark";
  1599.     const SMART_BOOKMARKS_PREF = "browser.places.smartBookmarksVersion";
  1600.  
  1601.     // TODO bug 399268: should this be a pref?
  1602.     const MAX_RESULTS = 10;
  1603.  
  1604.     // Get current smart bookmarks version.  If not set, create them.
  1605.     let smartBookmarksCurrentVersion = 0;
  1606.     try {
  1607.       smartBookmarksCurrentVersion = Services.prefs.getIntPref(SMART_BOOKMARKS_PREF);
  1608.     } catch(ex) {}
  1609.  
  1610.     // If version is current or smart bookmarks are disabled, just bail out.
  1611.     if (smartBookmarksCurrentVersion == -1 ||
  1612.         smartBookmarksCurrentVersion >= SMART_BOOKMARKS_VERSION) {
  1613.       return;
  1614.     }
  1615.  
  1616.     let batch = {
  1617.       runBatched: function BG_EPDQI_runBatched() {
  1618.         let menuIndex = 0;
  1619.         let toolbarIndex = 0;
  1620.         let bundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties");
  1621.  
  1622.         let smartBookmarks = {
  1623.           MostVisited: {
  1624.             title: bundle.GetStringFromName("mostVisitedTitle"),
  1625.             uri: NetUtil.newURI("place:sort=" +
  1626.                                 Ci.nsINavHistoryQueryOptions.SORT_BY_VISITCOUNT_DESCENDING +
  1627.                                 "&maxResults=" + MAX_RESULTS),
  1628.             parent: PlacesUtils.toolbarFolderId,
  1629.             position: toolbarIndex++,
  1630.             newInVersion: 1
  1631.           },
  1632.           RecentlyBookmarked: {
  1633.             title: bundle.GetStringFromName("recentlyBookmarkedTitle"),
  1634.             uri: NetUtil.newURI("place:folder=BOOKMARKS_MENU" +
  1635.                                 "&folder=UNFILED_BOOKMARKS" +
  1636.                                 "&folder=TOOLBAR" +
  1637.                                 "&queryType=" +
  1638.                                 Ci.nsINavHistoryQueryOptions.QUERY_TYPE_BOOKMARKS +
  1639.                                 "&sort=" +
  1640.                                 Ci.nsINavHistoryQueryOptions.SORT_BY_DATEADDED_DESCENDING +
  1641.                                 "&maxResults=" + MAX_RESULTS +
  1642.                                 "&excludeQueries=1"),
  1643.             parent: PlacesUtils.bookmarksMenuFolderId,
  1644.             position: menuIndex++,
  1645.             newInVersion: 1
  1646.           },
  1647.           RecentTags: {
  1648.             title: bundle.GetStringFromName("recentTagsTitle"),
  1649.             uri: NetUtil.newURI("place:"+
  1650.                                 "type=" +
  1651.                                 Ci.nsINavHistoryQueryOptions.RESULTS_AS_TAG_QUERY +
  1652.                                 "&sort=" +
  1653.                                 Ci.nsINavHistoryQueryOptions.SORT_BY_LASTMODIFIED_DESCENDING +
  1654.                                 "&maxResults=" + MAX_RESULTS),
  1655.             parent: PlacesUtils.bookmarksMenuFolderId,
  1656.             position: menuIndex++,
  1657.             newInVersion: 1
  1658.           },
  1659.         };
  1660.  
  1661.         if (Services.sysinfo.getProperty("hasWindowsTouchInterface")) {
  1662.           smartBookmarks.Windows8Touch = {
  1663.             title: bundle.GetStringFromName("windows8TouchTitle"),
  1664.             uri: NetUtil.newURI("place:folder=" +
  1665.                                 PlacesUtils.annotations.getItemsWithAnnotation('metro/bookmarksRoot', {})[0] +
  1666.                                 "&queryType=" +
  1667.                                 Ci.nsINavHistoryQueryOptions.QUERY_TYPE_BOOKMARKS +
  1668.                                 "&sort=" +
  1669.                                 Ci.nsINavHistoryQueryOptions.SORT_BY_DATEADDED_DESCENDING +
  1670.                                 "&maxResults=" + MAX_RESULTS +
  1671.                                 "&excludeQueries=1"),
  1672.             parent: PlacesUtils.bookmarksMenuFolderId,
  1673.             position: menuIndex++,
  1674.             newInVersion: 6
  1675.           };
  1676.         }
  1677.  
  1678.         // Set current itemId, parent and position if Smart Bookmark exists,
  1679.         // we will use these informations to create the new version at the same
  1680.         // position.
  1681.         let smartBookmarkItemIds = PlacesUtils.annotations.getItemsWithAnnotation(SMART_BOOKMARKS_ANNO);
  1682.         smartBookmarkItemIds.forEach(function (itemId) {
  1683.           let queryId = PlacesUtils.annotations.getItemAnnotation(itemId, SMART_BOOKMARKS_ANNO);
  1684.           if (queryId in smartBookmarks) {
  1685.             let smartBookmark = smartBookmarks[queryId];
  1686.             smartBookmark.itemId = itemId;
  1687.             smartBookmark.parent = PlacesUtils.bookmarks.getFolderIdForItem(itemId);
  1688.             smartBookmark.position = PlacesUtils.bookmarks.getItemIndex(itemId);
  1689.           }
  1690.           else {
  1691.             // We don't remove old Smart Bookmarks because user could still
  1692.             // find them useful, or could have personalized them.
  1693.             // Instead we remove the Smart Bookmark annotation.
  1694.             PlacesUtils.annotations.removeItemAnnotation(itemId, SMART_BOOKMARKS_ANNO);
  1695.           }
  1696.         });
  1697.  
  1698.         for (let queryId in smartBookmarks) {
  1699.           let smartBookmark = smartBookmarks[queryId];
  1700.  
  1701.           // We update or create only changed or new smart bookmarks.
  1702.           // Also we respect user choices, so we won't try to create a smart
  1703.           // bookmark if it has been removed.
  1704.           if (smartBookmarksCurrentVersion > 0 &&
  1705.               smartBookmark.newInVersion <= smartBookmarksCurrentVersion &&
  1706.               !smartBookmark.itemId)
  1707.             continue;
  1708.  
  1709.           // Remove old version of the smart bookmark if it exists, since it
  1710.           // will be replaced in place.
  1711.           if (smartBookmark.itemId) {
  1712.             PlacesUtils.bookmarks.removeItem(smartBookmark.itemId);
  1713.           }
  1714.  
  1715.           // Create the new smart bookmark and store its updated itemId.
  1716.           smartBookmark.itemId =
  1717.             PlacesUtils.bookmarks.insertBookmark(smartBookmark.parent,
  1718.                                                  smartBookmark.uri,
  1719.                                                  smartBookmark.position,
  1720.                                                  smartBookmark.title);
  1721.           PlacesUtils.annotations.setItemAnnotation(smartBookmark.itemId,
  1722.                                                     SMART_BOOKMARKS_ANNO,
  1723.                                                     queryId, 0,
  1724.                                                     PlacesUtils.annotations.EXPIRE_NEVER);
  1725.         }
  1726.  
  1727.         // If we are creating all Smart Bookmarks from ground up, add a
  1728.         // separator below them in the bookmarks menu.
  1729.         if (smartBookmarksCurrentVersion == 0 &&
  1730.             smartBookmarkItemIds.length == 0) {
  1731.           let id = PlacesUtils.bookmarks.getIdForItemAt(PlacesUtils.bookmarksMenuFolderId,
  1732.                                                         menuIndex);
  1733.           // Don't add a separator if the menu was empty or there is one already.
  1734.           if (id != -1 &&
  1735.               PlacesUtils.bookmarks.getItemType(id) != PlacesUtils.bookmarks.TYPE_SEPARATOR) {
  1736.             PlacesUtils.bookmarks.insertSeparator(PlacesUtils.bookmarksMenuFolderId,
  1737.                                                   menuIndex);
  1738.           }
  1739.         }
  1740.       }
  1741.     };
  1742.  
  1743.     try {
  1744.       PlacesUtils.bookmarks.runInBatchMode(batch, null);
  1745.     }
  1746.     catch(ex) {
  1747.       Components.utils.reportError(ex);
  1748.     }
  1749.     finally {
  1750.       Services.prefs.setIntPref(SMART_BOOKMARKS_PREF, SMART_BOOKMARKS_VERSION);
  1751.       Services.prefs.savePrefFile(null);
  1752.     }
  1753.   },
  1754.  
  1755.   // this returns the most recent non-popup browser window
  1756.   getMostRecentBrowserWindow: function BG_getMostRecentBrowserWindow() {
  1757.     return RecentWindow.getMostRecentBrowserWindow();
  1758.   },
  1759.  
  1760. //@line 1778 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  1761.   /**
  1762.    * Called as an observer when Sync's "display URI" notification is fired.
  1763.    *
  1764.    * We open the received URI in a background tab.
  1765.    *
  1766.    * Eventually, this will likely be replaced by a more robust tab syncing
  1767.    * feature. This functionality is considered somewhat evil by UX because it
  1768.    * opens a new tab automatically without any prompting. However, it is a
  1769.    * lesser evil than sending a tab to a specific device (from e.g. Fennec)
  1770.    * and having nothing happen on the receiving end.
  1771.    */
  1772.   _onDisplaySyncURI: function _onDisplaySyncURI(data) {
  1773.     try {
  1774.       let tabbrowser = RecentWindow.getMostRecentBrowserWindow({private: false}).gBrowser;
  1775.  
  1776.       // The payload is wrapped weirdly because of how Sync does notifications.
  1777.       tabbrowser.addTab(data.wrappedJSObject.object.uri);
  1778.     } catch (ex) {
  1779.       Cu.reportError("Error displaying tab received by Sync: " + ex);
  1780.     }
  1781.   },
  1782. //@line 1800 "c:\Users\Alexandros\Downloads\mozilla-release\browser\components\nsBrowserGlue.js"
  1783.  
  1784.   // for XPCOM
  1785.   classID:          Components.ID("{eab9012e-5f74-4cbc-b2b5-a590235513cc}"),
  1786.  
  1787.   QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver,
  1788.                                          Ci.nsISupportsWeakReference,
  1789.                                          Ci.nsIBrowserGlue]),
  1790.  
  1791.   // redefine the default factory for XPCOMUtils
  1792.   _xpcom_factory: BrowserGlueServiceFactory,
  1793. }
  1794.  
  1795. function ContentPermissionPrompt() {}
  1796.  
  1797. ContentPermissionPrompt.prototype = {
  1798.   classID:          Components.ID("{d8903bf6-68d5-4e97-bcd1-e4d3012f721a}"),
  1799.  
  1800.   QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPermissionPrompt]),
  1801.  
  1802.   _getBrowserForRequest: function (aRequest) {
  1803.     // "element" is only defined in e10s mode.
  1804.     let browser = aRequest.element;
  1805.     if (!browser) {
  1806.       // Find the requesting browser.
  1807.       browser = aRequest.window.QueryInterface(Ci.nsIInterfaceRequestor)
  1808.                                   .getInterface(Ci.nsIWebNavigation)
  1809.                                   .QueryInterface(Ci.nsIDocShell)
  1810.                                   .chromeEventHandler;
  1811.     }
  1812.     return browser;
  1813.   },
  1814.  
  1815.   /**
  1816.    * Show a permission prompt.
  1817.    *
  1818.    * @param aRequest               The permission request.
  1819.    * @param aMessage               The message to display on the prompt.
  1820.    * @param aPermission            The type of permission to prompt.
  1821.    * @param aActions               An array of actions of the form:
  1822.    *                               [main action, secondary actions, ...]
  1823.    *                               Actions are of the form { stringId, action, expireType, callback }
  1824.    *                               Permission is granted if action is null or ALLOW_ACTION.
  1825.    * @param aNotificationId        The id of the PopupNotification.
  1826.    * @param aAnchorId              The id for the PopupNotification anchor.
  1827.    * @param aOptions               Options for the PopupNotification
  1828.    */
  1829.   _showPrompt: function CPP_showPrompt(aRequest, aMessage, aPermission, aActions,
  1830.                                        aNotificationId, aAnchorId, aOptions) {
  1831.     function onFullScreen() {
  1832.       popup.remove();
  1833.     }
  1834.  
  1835.     var browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
  1836.  
  1837.     var browser = this._getBrowserForRequest(aRequest);
  1838.     var chromeWin = browser.ownerDocument.defaultView;
  1839.     var requestPrincipal = aRequest.principal;
  1840.  
  1841.     // Transform the prompt actions into PopupNotification actions.
  1842.     var popupNotificationActions = [];
  1843.     for (var i = 0; i < aActions.length; i++) {
  1844.       let promptAction = aActions[i];
  1845.  
  1846.       // Don't offer action in PB mode if the action remembers permission for more than a session.
  1847.       if (PrivateBrowsingUtils.isWindowPrivate(chromeWin) &&
  1848.           promptAction.expireType != Ci.nsIPermissionManager.EXPIRE_SESSION &&
  1849.           promptAction.action) {
  1850.         continue;
  1851.       }
  1852.  
  1853.       var action = {
  1854.         label: browserBundle.GetStringFromName(promptAction.stringId),
  1855.         accessKey: browserBundle.GetStringFromName(promptAction.stringId + ".accesskey"),
  1856.         callback: function() {
  1857.           if (promptAction.callback) {
  1858.             promptAction.callback();
  1859.           }
  1860.  
  1861.           // Remember permissions.
  1862.           if (promptAction.action) {
  1863.             Services.perms.addFromPrincipal(requestPrincipal, aPermission,
  1864.                                             promptAction.action, promptAction.expireType);
  1865.           }
  1866.  
  1867.           // Grant permission if action is null or ALLOW_ACTION.
  1868.           if (!promptAction.action || promptAction.action == Ci.nsIPermissionManager.ALLOW_ACTION) {
  1869.             aRequest.allow();
  1870.           } else {
  1871.             aRequest.cancel();
  1872.           }
  1873.         },
  1874.       };
  1875.  
  1876.       popupNotificationActions.push(action);
  1877.     }
  1878.  
  1879.     var mainAction = popupNotificationActions.length ?
  1880.                        popupNotificationActions[0] : null;
  1881.     var secondaryActions = popupNotificationActions.splice(1);
  1882.  
  1883.     if (aRequest.type == "pointerLock") {
  1884.       // If there's no mainAction, this is the autoAllow warning prompt.
  1885.       let autoAllow = !mainAction;
  1886.       aOptions = {
  1887.         removeOnDismissal: autoAllow,
  1888.         eventCallback: type => {
  1889.           if (type == "removed") {
  1890.             browser.removeEventListener("mozfullscreenchange", onFullScreen, true);
  1891.             if (autoAllow) {
  1892.               aRequest.allow();
  1893.             }
  1894.           }
  1895.         },
  1896.       };
  1897.     }
  1898.  
  1899.     var popup = chromeWin.PopupNotifications.show(browser, aNotificationId, aMessage, aAnchorId,
  1900.                                                   mainAction, secondaryActions, aOptions);
  1901.     if (aRequest.type == "pointerLock") {
  1902.       // pointerLock is automatically allowed in fullscreen mode (and revoked
  1903.       // upon exit), so if the page enters fullscreen mode after requesting
  1904.       // pointerLock (but before the user has granted permission), we should
  1905.       // remove the now-impotent notification.
  1906.       browser.addEventListener("mozfullscreenchange", onFullScreen, true);
  1907.     }
  1908.   },
  1909.  
  1910.   _promptGeo : function(aRequest) {
  1911.     var secHistogram = Services.telemetry.getHistogramById("SECURITY_UI");
  1912.     var browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
  1913.     var requestingURI = aRequest.principal.URI;
  1914.  
  1915.     var message;
  1916.  
  1917.     // Share location action.
  1918.     var actions = [{
  1919.       stringId: "geolocation.shareLocation",
  1920.       action: null,
  1921.       expireType: null,
  1922.       callback: function() {
  1923.         secHistogram.add(Ci.nsISecurityUITelemetry.WARNING_GEOLOCATION_REQUEST_SHARE_LOCATION);
  1924.       },
  1925.     }];
  1926.  
  1927.     if (requestingURI.schemeIs("file")) {
  1928.       message = browserBundle.formatStringFromName("geolocation.shareWithFile",
  1929.                                                    [requestingURI.path], 1);
  1930.     } else {
  1931.       message = browserBundle.formatStringFromName("geolocation.shareWithSite",
  1932.                                                    [requestingURI.host], 1);
  1933.       // Always share location action.
  1934.       actions.push({
  1935.         stringId: "geolocation.alwaysShareLocation",
  1936.         action: Ci.nsIPermissionManager.ALLOW_ACTION,
  1937.         expireType: null,
  1938.         callback: function() {
  1939.           secHistogram.add(Ci.nsISecurityUITelemetry.WARNING_GEOLOCATION_REQUEST_ALWAYS_SHARE);
  1940.         },
  1941.       });
  1942.  
  1943.       // Never share location action.
  1944.       actions.push({
  1945.         stringId: "geolocation.neverShareLocation",
  1946.         action: Ci.nsIPermissionManager.DENY_ACTION,
  1947.         expireType: null,
  1948.         callback: function() {
  1949.           secHistogram.add(Ci.nsISecurityUITelemetry.WARNING_GEOLOCATION_REQUEST_NEVER_SHARE);
  1950.         },
  1951.       });
  1952.     }
  1953.  
  1954.     var chromeWin = this._getBrowserForRequest(aRequest).ownerDocument.defaultView;
  1955.     var link = chromeWin.document.getElementById("geolocation-learnmore-link");
  1956.     link.value = browserBundle.GetStringFromName("geolocation.learnMore");
  1957.     link.href = Services.urlFormatter.formatURLPref("browser.geolocation.warning.infoURL");
  1958.  
  1959.     secHistogram.add(Ci.nsISecurityUITelemetry.WARNING_GEOLOCATION_REQUEST);
  1960.  
  1961.     this._showPrompt(aRequest, message, "geo", actions, "geolocation",
  1962.                      "geo-notification-icon", null);
  1963.   },
  1964.  
  1965.   _promptWebNotifications : function(aRequest) {
  1966.     var browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
  1967.     var requestingURI = aRequest.principal.URI;
  1968.  
  1969.     var message = browserBundle.formatStringFromName("webNotifications.showFromSite",
  1970.                                                      [requestingURI.host], 1);
  1971.  
  1972.     var actions = [
  1973.       {
  1974.         stringId: "webNotifications.showForSession",
  1975.         action: Ci.nsIPermissionManager.ALLOW_ACTION,
  1976.         expireType: Ci.nsIPermissionManager.EXPIRE_SESSION,
  1977.         callback: function() {},
  1978.       },
  1979.       {
  1980.         stringId: "webNotifications.alwaysShow",
  1981.         action: Ci.nsIPermissionManager.ALLOW_ACTION,
  1982.         expireType: null,
  1983.         callback: function() {},
  1984.       },
  1985.       {
  1986.         stringId: "webNotifications.neverShow",
  1987.         action: Ci.nsIPermissionManager.DENY_ACTION,
  1988.         expireType: null,
  1989.         callback: function() {},
  1990.       },
  1991.     ];
  1992.  
  1993.     this._showPrompt(aRequest, message, "desktop-notification", actions,
  1994.                      "web-notifications",
  1995.                      "web-notifications-notification-icon", null);
  1996.   },
  1997.  
  1998.   _promptPointerLock: function CPP_promtPointerLock(aRequest, autoAllow) {
  1999.  
  2000.     let browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
  2001.     let requestingURI = aRequest.principal.URI;
  2002.  
  2003.     let originString = requestingURI.schemeIs("file") ? requestingURI.path : requestingURI.host;
  2004.     let message = browserBundle.formatStringFromName(autoAllow ?
  2005.                                   "pointerLock.autoLock.title2" : "pointerLock.title2",
  2006.                                   [originString], 1);
  2007.     // If this is an autoAllow info prompt, offer no actions.
  2008.     // _showPrompt() will allow the request when it's dismissed.
  2009.     let actions = [];
  2010.     if (!autoAllow) {
  2011.       actions = [
  2012.         {
  2013.           stringId: "pointerLock.allow2",
  2014.           action: null,
  2015.           expireType: null,
  2016.           callback: function() {},
  2017.         },
  2018.         {
  2019.           stringId: "pointerLock.alwaysAllow",
  2020.           action: Ci.nsIPermissionManager.ALLOW_ACTION,
  2021.           expireType: null,
  2022.           callback: function() {},
  2023.         },
  2024.         {
  2025.           stringId: "pointerLock.neverAllow",
  2026.           action: Ci.nsIPermissionManager.DENY_ACTION,
  2027.           expireType: null,
  2028.           callback: function() {},
  2029.         },
  2030.       ];
  2031.     }
  2032.  
  2033.     this._showPrompt(aRequest, message, "pointerLock", actions, "pointerLock",
  2034.                      "pointerLock-notification-icon", null);
  2035.   },
  2036.  
  2037.   prompt: function CPP_prompt(request) {
  2038.  
  2039.     const kFeatureKeys = { "geolocation" : "geo",
  2040.                            "desktop-notification" : "desktop-notification",
  2041.                            "pointerLock" : "pointerLock",
  2042.                          };
  2043.  
  2044.     // Make sure that we support the request.
  2045.     if (!(request.type in kFeatureKeys)) {
  2046.         return;
  2047.     }
  2048.  
  2049.     var requestingPrincipal = request.principal;
  2050.     var requestingURI = requestingPrincipal.URI;
  2051.  
  2052.     // Ignore requests from non-nsIStandardURLs
  2053.     if (!(requestingURI instanceof Ci.nsIStandardURL))
  2054.       return;
  2055.  
  2056.     var autoAllow = false;
  2057.     var permissionKey = kFeatureKeys[request.type];
  2058.     var result = Services.perms.testExactPermissionFromPrincipal(requestingPrincipal, permissionKey);
  2059.  
  2060.     if (result == Ci.nsIPermissionManager.DENY_ACTION) {
  2061.       request.cancel();
  2062.       return;
  2063.     }
  2064.  
  2065.     if (result == Ci.nsIPermissionManager.ALLOW_ACTION) {
  2066.       autoAllow = true;
  2067.       // For pointerLock, we still want to show a warning prompt.
  2068.       if (request.type != "pointerLock") {
  2069.         request.allow();
  2070.         return;
  2071.       }
  2072.     }
  2073.  
  2074.     var browser = this._getBrowserForRequest(request);
  2075.     var chromeWin = browser.ownerDocument.defaultView;
  2076.     if (!chromeWin.PopupNotifications)
  2077.       // Ignore requests from browsers hosted in windows that don't support
  2078.       // PopupNotifications.
  2079.       return;
  2080.  
  2081.     // Show the prompt.
  2082.     switch (request.type) {
  2083.     case "geolocation":
  2084.       this._promptGeo(request);
  2085.       break;
  2086.     case "desktop-notification":
  2087.       this._promptWebNotifications(request);
  2088.       break;
  2089.     case "pointerLock":
  2090.       this._promptPointerLock(request, autoAllow);
  2091.       break;
  2092.     }
  2093.   },
  2094.  
  2095. };
  2096.  
  2097. var components = [BrowserGlue, ContentPermissionPrompt];
  2098. this.NSGetFactory = XPCOMUtils.generateNSGetFactory(components);
  2099.