2015-11-26 04:45:19 +01:00
|
|
|
diff --git prefs_tab_helper.cc prefs_tab_helper.cc
|
2016-01-06 20:20:54 +01:00
|
|
|
index ee406db..fc86170 100644
|
2015-11-26 04:45:19 +01:00
|
|
|
--- prefs_tab_helper.cc
|
|
|
|
+++ prefs_tab_helper.cc
|
2016-01-06 20:20:54 +01:00
|
|
|
@@ -12,7 +12,7 @@
|
2015-11-26 04:45:19 +01:00
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/macros.h"
|
2015-11-26 04:45:19 +01:00
|
|
|
-#include "base/memory/singleton.h"
|
|
|
|
+#include "base/lazy_instance.h"
|
2016-01-06 20:20:54 +01:00
|
|
|
#include "base/metrics/field_trial.h"
|
2015-11-26 04:45:19 +01:00
|
|
|
#include "base/prefs/overlay_user_pref_store.h"
|
|
|
|
#include "base/prefs/pref_change_registrar.h"
|
2016-01-06 20:20:54 +01:00
|
|
|
@@ -431,12 +431,10 @@ class PrefWatcherFactory : public BrowserContextKeyedServiceFactory {
|
2015-11-26 04:45:19 +01:00
|
|
|
GetInstance()->GetServiceForBrowserContext(profile, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
- static PrefWatcherFactory* GetInstance() {
|
|
|
|
- return base::Singleton<PrefWatcherFactory>::get();
|
|
|
|
- }
|
|
|
|
+ static PrefWatcherFactory* GetInstance();
|
|
|
|
|
|
|
|
private:
|
|
|
|
- friend struct base::DefaultSingletonTraits<PrefWatcherFactory>;
|
|
|
|
+ friend struct base::DefaultLazyInstanceTraits<PrefWatcherFactory>;
|
|
|
|
|
|
|
|
PrefWatcherFactory() : BrowserContextKeyedServiceFactory(
|
|
|
|
"PrefWatcher",
|
2016-01-06 20:20:54 +01:00
|
|
|
@@ -457,6 +455,18 @@ class PrefWatcherFactory : public BrowserContextKeyedServiceFactory {
|
2015-11-26 04:45:19 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
+namespace {
|
|
|
|
+
|
|
|
|
+base::LazyInstance<PrefWatcherFactory>::Leaky g_pref_watcher_factory =
|
|
|
|
+ LAZY_INSTANCE_INITIALIZER;
|
|
|
|
+
|
|
|
|
+} // namespace
|
|
|
|
+
|
|
|
|
+// static
|
|
|
|
+PrefWatcherFactory* PrefWatcherFactory::GetInstance() {
|
|
|
|
+ return g_pref_watcher_factory.Pointer();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
// static
|
|
|
|
PrefWatcher* PrefWatcher::Get(Profile* profile) {
|
|
|
|
return PrefWatcherFactory::GetForProfile(profile);
|