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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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")
; | |
25 Prefs.migrate("extensions.typed-it-collection.domainOptIn", "domainOptIn"); | |
26 Prefs.migrate("extensions.typed-it-collection.counter", "counter"); | |
27 | 24 |
28 require("typoFixer"); | 25 require("typoFixer"); |
29 require("typoCollector"); | |
30 | 26 |
31 // Execute first-run actions once the session is restored | 27 // Execute first-run actions once the session is restored |
32 { | 28 { |
33 let observer = | 29 let observer = |
34 { | 30 { |
35 observe: function(subject, topic, data) | 31 observe: function(subject, topic, data) |
36 { | 32 { |
37 removeHandler(); | 33 removeHandler(); |
38 onShutdown.remove(removeHandler); | 34 onShutdown.remove(removeHandler); |
39 onBrowserInitialized(); | 35 onBrowserInitialized(); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 if (oldVersion) | 75 if (oldVersion) |
80 url += "&update=1"; | 76 url += "&update=1"; |
81 if ("Browser" in window && typeof window.Browser.addTab != 'undefined') | 77 if ("Browser" in window && typeof window.Browser.addTab != 'undefined') |
82 { | 78 { |
83 // window.Browser.addTab(url, true); | 79 // window.Browser.addTab(url, true); |
84 // No firstrun on Fennec. | 80 // No firstrun on Fennec. |
85 } | 81 } |
86 else if ("gBrowser" in window) | 82 else if ("gBrowser" in window) |
87 window.gBrowser.loadOneTab(url, {inBackground: false}); | 83 window.gBrowser.loadOneTab(url, {inBackground: false}); |
88 } | 84 } |
89 | |
90 require("typoCollector").onBrowserInitialized(window); | |
91 } | 85 } |
OLD | NEW |