| Index: chrome/browser/prefs/incognito_mode_prefs.cc
|
| diff --git a/chrome/browser/prefs/incognito_mode_prefs.cc b/chrome/browser/prefs/incognito_mode_prefs.cc
|
| index f9d0fcd880efc0d3e795402a3783858cc1aeb8f2..e3d7499e7052e80ee94e519dae39bae31ad3a2fc 100644
|
| --- a/chrome/browser/prefs/incognito_mode_prefs.cc
|
| +++ b/chrome/browser/prefs/incognito_mode_prefs.cc
|
| @@ -42,7 +42,7 @@ namespace {
|
| class PlatformParentalControlsValue {
|
| public:
|
| static PlatformParentalControlsValue* GetInstance() {
|
| - return Singleton<PlatformParentalControlsValue>::get();
|
| + return base::Singleton<PlatformParentalControlsValue>::get();
|
| }
|
|
|
| bool is_enabled() const {
|
| @@ -50,7 +50,7 @@ class PlatformParentalControlsValue {
|
| }
|
|
|
| private:
|
| - friend struct DefaultSingletonTraits<PlatformParentalControlsValue>;
|
| + friend struct base::DefaultSingletonTraits<PlatformParentalControlsValue>;
|
|
|
| // Histogram enum for tracking the thread that checked parental controls.
|
| enum class ThreadType {
|
|
|