Chromium Code Reviews| Index: chrome/browser/ui/app_list/arc_app_prefs_factory.cc |
| diff --git a/chrome/browser/ui/app_list/arc_app_prefs_factory.cc b/chrome/browser/ui/app_list/arc_app_prefs_factory.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1698f6086b1f61507409694cab966516de8f1883 |
| --- /dev/null |
| +++ b/chrome/browser/ui/app_list/arc_app_prefs_factory.cc |
| @@ -0,0 +1,45 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/ui/app_list/arc_app_prefs_factory.h" |
| + |
| +#include "chrome/browser/profiles/incognito_helpers.h" |
| +#include "chrome/browser/profiles/profile.h" |
| +#include "chrome/browser/ui/app_list/arc_app_prefs.h" |
| +#include "components/keyed_service/content/browser_context_dependency_manager.h" |
| +#include "content/public/browser/browser_context.h" |
| + |
| +// static |
| +ArcAppPrefs* ArcAppPrefsFactory::GetForBrowserContext( |
| + content::BrowserContext* context) { |
| + return static_cast<ArcAppPrefs*>( |
| + GetInstance()->GetServiceForBrowserContext(context, true)); |
| +} |
| + |
| +// static |
| +ArcAppPrefsFactory* ArcAppPrefsFactory::GetInstance() { |
| + return base::Singleton<ArcAppPrefsFactory>::get(); |
| +} |
| + |
| +ArcAppPrefsFactory::ArcAppPrefsFactory() |
| + : BrowserContextKeyedServiceFactory( |
| + "ArcAppPrefs", |
| + BrowserContextDependencyManager::GetInstance()) { |
| +} |
| + |
| +ArcAppPrefsFactory::~ArcAppPrefsFactory() { |
| +} |
| + |
| +KeyedService* ArcAppPrefsFactory::BuildServiceInstanceFor( |
| + content::BrowserContext* context) const { |
| + Profile* profile = reinterpret_cast<Profile*>(context); |
|
xiyuan
2015/11/12 17:32:45
reinterpret_cast<Profile*> -> static_cast<Profile*
khmel1
2015/11/13 15:00:56
Done.
|
| + return ArcAppPrefs::Create(profile->GetPath(), profile->GetPrefs()); |
| +} |
| + |
| +content::BrowserContext* ArcAppPrefsFactory::GetBrowserContextToUse( |
| + content::BrowserContext* context) const { |
| + // This matches the logic in ExtensionSyncServiceFactory, which uses the |
| + // orginal browser context. |
| + return chrome::GetBrowserContextRedirectedInIncognito(context); |
| +} |