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

Unified Diff: chrome/browser/bluetooth/bluetooth_allowed_devices_map.h

Issue 2658473002: Refactor BluetoothAllowedDevicesMap (Closed)
Patch Set: updated test code Created 3 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_allowed_devices_map.h
diff --git a/chrome/browser/bluetooth/bluetooth_allowed_devices_map.h b/chrome/browser/bluetooth/bluetooth_allowed_devices_map.h
new file mode 100644
index 0000000000000000000000000000000000000000..050f509f16954b22b6a8ec37c7abe8f64f203d8d
--- /dev/null
+++ b/chrome/browser/bluetooth/bluetooth_allowed_devices_map.h
@@ -0,0 +1,19 @@
+// Copyright 2017 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.
+
+#ifndef CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_
+#define CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_
+
+#include "components/keyed_service/core/keyed_service.h"
+#include "content/public/browser/bluetooth_allowed_devices_map_base.h"
+
+class BluetoothAllowedDevicesMap
+ : public KeyedService,
+ public content::BluetoothAllowedDevicesMapBase {
+ public:
+ BluetoothAllowedDevicesMap();
+ ~BluetoothAllowedDevicesMap() override;
+};
+
+#endif // CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_

Powered by Google App Engine
This is Rietveld 408576698