| Index: content/public/browser/desktop_media_id.cc
|
| diff --git a/content/public/browser/desktop_media_id.cc b/content/public/browser/desktop_media_id.cc
|
| index 74fbb3ab89f9310a227472c28eae347f2762b420..4ca97f46430b6f71bff9e29d3bfb220e2395c1e3 100644
|
| --- a/content/public/browser/desktop_media_id.cc
|
| +++ b/content/public/browser/desktop_media_id.cc
|
| @@ -24,7 +24,7 @@ namespace {
|
| class AuraWindowRegistry : public aura::WindowObserver {
|
| public:
|
| static AuraWindowRegistry* GetInstance() {
|
| - return Singleton<AuraWindowRegistry>::get();
|
| + return base::Singleton<AuraWindowRegistry>::get();
|
| }
|
|
|
| int RegisterWindow(aura::Window* window) {
|
| @@ -43,7 +43,7 @@ class AuraWindowRegistry : public aura::WindowObserver {
|
| }
|
|
|
| private:
|
| - friend struct DefaultSingletonTraits<AuraWindowRegistry>;
|
| + friend struct base::DefaultSingletonTraits<AuraWindowRegistry>;
|
|
|
| AuraWindowRegistry() {}
|
| ~AuraWindowRegistry() override {}
|
|
|