diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:56:35 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:56:35 -0400 |
commit | 325b204d2661dafd2720d3e78f47be8038871dbd (patch) | |
tree | f649c7aa92e1d49aba43de6ebade282a8bd3da28 /toolkit/components/search/nsSearchService.js | |
parent | abe80cc31d5a40ebed743085011fbcda0c1a9a10 (diff) | |
download | UXP-325b204d2661dafd2720d3e78f47be8038871dbd.tar UXP-325b204d2661dafd2720d3e78f47be8038871dbd.tar.gz UXP-325b204d2661dafd2720d3e78f47be8038871dbd.tar.lz UXP-325b204d2661dafd2720d3e78f47be8038871dbd.tar.xz UXP-325b204d2661dafd2720d3e78f47be8038871dbd.zip |
Issue #1053 - Drop support Android and remove Fennec - Part 1b: Remove MOZ_FENNEC
Diffstat (limited to 'toolkit/components/search/nsSearchService.js')
-rw-r--r-- | toolkit/components/search/nsSearchService.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/toolkit/components/search/nsSearchService.js b/toolkit/components/search/nsSearchService.js index 82f8d155a..19f4048b4 100644 --- a/toolkit/components/search/nsSearchService.js +++ b/toolkit/components/search/nsSearchService.js @@ -4204,10 +4204,6 @@ SearchService.prototype = { Services.obs.addObserver(this, SEARCH_ENGINE_TOPIC, false); Services.obs.addObserver(this, QUIT_APPLICATION_TOPIC, false); -#ifdef MOZ_FENNEC - Services.prefs.addObserver(LOCALE_PREF, this, false); -#endif - // The current stage of shutdown. Used to help analyze crash // signatures in case of shutdown timeout. let shutdownState = { @@ -4252,10 +4248,6 @@ SearchService.prototype = { _removeObservers: function SRCH_SVC_removeObservers() { Services.obs.removeObserver(this, SEARCH_ENGINE_TOPIC); Services.obs.removeObserver(this, QUIT_APPLICATION_TOPIC); - -#ifdef MOZ_FENNEC - Services.prefs.removeObserver(LOCALE_PREF, this); -#endif }, QueryInterface: function SRCH_SVC_QI(aIID) { |