| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * This file is part of the URL Fixer, | 2  * This file is part of the URL Fixer, | 
| 3  * Copyright (C) 2006-2012 Eyeo GmbH | 3  * Copyright (C) 2006-2012 Eyeo GmbH | 
| 4  * | 4  * | 
| 5  * URL Fixer is free software: you can redistribute it and/or modify | 5  * URL Fixer is free software: you can redistribute it and/or modify | 
| 6  * it under the terms of the GNU General Public License version 3 as | 6  * it under the terms of the GNU General Public License version 3 as | 
| 7  * published by the Free Software Foundation. | 7  * published by the Free Software Foundation. | 
| 8  * | 8  * | 
| 9  * URL Fixer is distributed in the hope that it will be useful, | 9  * URL Fixer is distributed in the hope that it will be useful, | 
| 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
| 12  * GNU General Public License for more details. | 12  * GNU General Public License for more details. | 
| 13  * | 13  * | 
| 14  * You should have received a copy of the GNU General Public License | 14  * You should have received a copy of the GNU General Public License | 
| 15  * along with URL Fixer.  If not, see <http://www.gnu.org/licenses/>. | 15  * along with URL Fixer.  If not, see <http://www.gnu.org/licenses/>. | 
| 16  */ | 16  */ | 
| 17 | 17 | 
| 18 Cu.import("resource://gre/modules/Services.jsm"); | 18 Cu.import("resource://gre/modules/Services.jsm"); | 
| 19 Cu.import("resource://gre/modules/FileUtils.jsm"); | 19 Cu.import("resource://gre/modules/FileUtils.jsm"); | 
| 20 Cu.import("resource://gre/modules/XPCOMUtils.jsm"); | 20 Cu.import("resource://gre/modules/XPCOMUtils.jsm"); | 
| 21 | 21 | 
| 22 // Import prefs from old branch if there are any | 22 // Import prefs from old branch if there are any | 
| 23 let {Prefs} = require("prefs"); | 23 let {Prefs} = require("prefs"); | 
| 24 Prefs.migrate("extensions.typed-it-collection.domainOptInAsk", "domainOptInAsk")
    ; | 24 Prefs.migrate("extensions.typed-it-collection.domainOptInAsk", "domainOptInAsk")
    ; | 
| 25 Prefs.migrate("extensions.typed-it-collection.domainOptIn", "domainOptIn"); | 25 Prefs.migrate("extensions.typed-it-collection.domainOptIn", "domainOptIn"); | 
| 26 Prefs.migrate("extensions.typed-it-collection.counter", "counter"); | 26 Prefs.migrate("extensions.typed-it-collection.counter", "counter"); | 
| 27 | 27 | 
| 28 require("typoFixer"); | 28 require("typoFixer"); | 
| 29 require("typedItCollector"); | 29 require("typoCollector"); | 
| 30 | 30 | 
| 31 // Execute first-run actions once the session is restored | 31 // Execute first-run actions once the session is restored | 
| 32 { | 32 { | 
| 33   let observer = | 33   let observer = | 
| 34   { | 34   { | 
| 35     observe: function(subject, topic, data) | 35     observe: function(subject, topic, data) | 
| 36     { | 36     { | 
| 37       removeHandler(); | 37       removeHandler(); | 
| 38       onShutdown.remove(removeHandler); | 38       onShutdown.remove(removeHandler); | 
| 39       onBrowserInitialized(); | 39       onBrowserInitialized(); | 
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 80       url += "&update=1"; | 80       url += "&update=1"; | 
| 81     if ("Browser" in window && typeof window.Browser.addTab != 'undefined') | 81     if ("Browser" in window && typeof window.Browser.addTab != 'undefined') | 
| 82     { | 82     { | 
| 83       // window.Browser.addTab(url, true); | 83       // window.Browser.addTab(url, true); | 
| 84       // No firstrun on Fennec. | 84       // No firstrun on Fennec. | 
| 85     } | 85     } | 
| 86     else if ("gBrowser" in window) | 86     else if ("gBrowser" in window) | 
| 87       window.gBrowser.loadOneTab(url, {inBackground: false}); | 87       window.gBrowser.loadOneTab(url, {inBackground: false}); | 
| 88   } | 88   } | 
| 89 | 89 | 
| 90   require("typedItCollector").onBrowserInitialized(window); | 90   require("typoCollector").onBrowserInitialized(window); | 
| 91 } | 91 } | 
| OLD | NEW | 
|---|