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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/storage/durable_storage_permission_context_factory.cc
diff --git a/chrome/browser/storage/durable_storage_permission_context_factory.cc b/chrome/browser/storage/durable_storage_permission_context_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3599a1042d515d9e11edb2396ca9d4809f95fd23
--- /dev/null
+++ b/chrome/browser/storage/durable_storage_permission_context_factory.cc
@@ -0,0 +1,40 @@
+// 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/storage/durable_storage_permission_context_factory.h"
+
+#include "chrome/browser/profiles/incognito_helpers.h"
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/storage/durable_storage_permission_context.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+
+// static
+DurableStoragePermissionContext*
+DurableStoragePermissionContextFactory::GetForProfile(Profile* profile) {
+ return static_cast<DurableStoragePermissionContext*>(
+ GetInstance()->GetServiceForBrowserContext(profile, true));
+}
+
+// static
+DurableStoragePermissionContextFactory*
+DurableStoragePermissionContextFactory::GetInstance() {
+ return Singleton<DurableStoragePermissionContextFactory>::get();
+}
+
+DurableStoragePermissionContextFactory::DurableStoragePermissionContextFactory()
+ : BrowserContextKeyedServiceFactory(
+ "DurableStoragePermissionContext",
+ BrowserContextDependencyManager::GetInstance()) {
+}
+
+KeyedService* DurableStoragePermissionContextFactory::BuildServiceInstanceFor(
+ content::BrowserContext* profile) const {
+ return new DurableStoragePermissionContext(static_cast<Profile*>(profile));
+}
+
+content::BrowserContext*
+DurableStoragePermissionContextFactory::GetBrowserContextToUse(
+ content::BrowserContext* context) const {
+ return chrome::GetBrowserContextOwnInstanceInIncognito(context);
+}

Powered by Google App Engine
This is Rietveld 408576698