BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / storage / durable_storage_permission_context_factory.cc
blob6b619d0bc1cf74737798584c6eda5a6807aecc6d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/storage/durable_storage_permission_context_factory.h"
7 #include "chrome/browser/profiles/incognito_helpers.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/storage/durable_storage_permission_context.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 // static
13 DurableStoragePermissionContext*
14 DurableStoragePermissionContextFactory::GetForProfile(Profile* profile) {
15 return static_cast<DurableStoragePermissionContext*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
19 // static
20 DurableStoragePermissionContextFactory*
21 DurableStoragePermissionContextFactory::GetInstance() {
22 return base::Singleton<DurableStoragePermissionContextFactory>::get();
25 DurableStoragePermissionContextFactory::DurableStoragePermissionContextFactory()
26 : PermissionContextFactoryBase(
27 "DurableStoragePermissionContext",
28 BrowserContextDependencyManager::GetInstance()) {
31 KeyedService* DurableStoragePermissionContextFactory::BuildServiceInstanceFor(
32 content::BrowserContext* profile) const {
33 return new DurableStoragePermissionContext(static_cast<Profile*>(profile));