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

Unified Diff: chrome/browser/bluetooth/bluetooth_permission_context_factory.cc

Issue 1560263002: Store Bluetooth permissions in website settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added code to check session->chooser_permission_manager Created 4 years, 11 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/bluetooth/bluetooth_permission_context_factory.cc
diff --git a/chrome/browser/bluetooth/bluetooth_permission_context_factory.cc b/chrome/browser/bluetooth/bluetooth_permission_context_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..185e5cf3a276fe91b279fd4d6891dc15b7167ca4
--- /dev/null
+++ b/chrome/browser/bluetooth/bluetooth_permission_context_factory.cc
@@ -0,0 +1,44 @@
+// 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/bluetooth/bluetooth_permission_context_factory.h"
+
+#include "chrome/browser/bluetooth/bluetooth_permission_context.h"
+#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
+#include "chrome/browser/profiles/incognito_helpers.h"
+#include "chrome/browser/profiles/profile.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+
+BluetoothPermissionContextFactory::BluetoothPermissionContextFactory()
+ : BrowserContextKeyedServiceFactory(
+ "BluetoothPermissionContext",
+ BrowserContextDependencyManager::GetInstance()) {
+ DependsOn(HostContentSettingsMapFactory::GetInstance());
+}
+
+BluetoothPermissionContextFactory::~BluetoothPermissionContextFactory() {}
+
+KeyedService* BluetoothPermissionContextFactory::BuildServiceInstanceFor(
+ content::BrowserContext* context) const {
+ return new BluetoothPermissionContext(Profile::FromBrowserContext(context));
+}
+
+// static
+BluetoothPermissionContextFactory*
+BluetoothPermissionContextFactory::GetInstance() {
+ return base::Singleton<BluetoothPermissionContextFactory>::get();
+}
+
+// static
+BluetoothPermissionContext* BluetoothPermissionContextFactory::GetForProfile(
+ Profile* profile) {
+ return static_cast<BluetoothPermissionContext*>(
+ GetInstance()->GetServiceForBrowserContext(profile, true));
+}
+
+content::BrowserContext*
+BluetoothPermissionContextFactory::GetBrowserContextToUse(
+ content::BrowserContext* context) const {
+ return chrome::GetBrowserContextOwnInstanceInIncognito(context);
+}
« no previous file with comments | « chrome/browser/bluetooth/bluetooth_permission_context_factory.h ('k') | chrome/browser/permissions/chooser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698