49 lines
1.4 KiB
Diff
49 lines
1.4 KiB
Diff
diff --git prefs_tab_helper.cc prefs_tab_helper.cc
|
|
index 448bb72..aa98dda 100644
|
|
--- prefs_tab_helper.cc
|
|
+++ prefs_tab_helper.cc
|
|
@@ -11,8 +11,8 @@
|
|
#include <string>
|
|
|
|
#include "base/command_line.h"
|
|
+#include "base/lazy_instance.h"
|
|
#include "base/macros.h"
|
|
-#include "base/memory/singleton.h"
|
|
#include "base/strings/string_number_conversions.h"
|
|
#include "base/strings/string_util.h"
|
|
#include "base/strings/stringprintf.h"
|
|
@@ -422,12 +422,10 @@ class PrefWatcherFactory : public BrowserContextKeyedServiceFactory {
|
|
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",
|
|
@@ -448,6 +446,18 @@ class PrefWatcherFactory : public BrowserContextKeyedServiceFactory {
|
|
}
|
|
};
|
|
|
|
+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);
|