Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: chrome/browser/storage/durable_storage_permission_context_factory.cc

Issue 1164073005: Allow script to request durable storage permission (chrome side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix conflicts after midi constant permission landed Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/storage/durable_storage_permission_context_factory.h"
6
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"
11
12 // static
13 DurableStoragePermissionContext*
14 DurableStoragePermissionContextFactory::GetForProfile(Profile* profile) {
15 return static_cast<DurableStoragePermissionContext*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
17 }
18
19 // static
20 DurableStoragePermissionContextFactory*
21 DurableStoragePermissionContextFactory::GetInstance() {
22 return Singleton<DurableStoragePermissionContextFactory>::get();
23 }
24
25 DurableStoragePermissionContextFactory::DurableStoragePermissionContextFactory()
26 : BrowserContextKeyedServiceFactory(
27 "DurableStoragePermissionContext",
28 BrowserContextDependencyManager::GetInstance()) {
29 }
30
31 KeyedService* DurableStoragePermissionContextFactory::BuildServiceInstanceFor(
32 content::BrowserContext* profile) const {
33 return new DurableStoragePermissionContext(static_cast<Profile*>(profile));
34 }
35
36 content::BrowserContext*
37 DurableStoragePermissionContextFactory::GetBrowserContextToUse(
38 content::BrowserContext* context) const {
39 return chrome::GetBrowserContextOwnInstanceInIncognito(context);
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698