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

Side by Side Diff: chrome/browser/bluetooth/bluetooth_allowed_devices_map.h

Issue 2658473002: Refactor BluetoothAllowedDevicesMap (Closed)
Patch Set: updated test code Created 3 years, 10 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 2017 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 #ifndef CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_
6 #define CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_
7
8 #include "components/keyed_service/core/keyed_service.h"
9 #include "content/public/browser/bluetooth_allowed_devices_map_base.h"
10
11 class BluetoothAllowedDevicesMap
12 : public KeyedService,
13 public content::BluetoothAllowedDevicesMapBase {
14 public:
15 BluetoothAllowedDevicesMap();
16 ~BluetoothAllowedDevicesMap() override;
17 };
18
19 #endif // CHROME_BROWSER_BLUETOOTH_BLUETOOTH_ALLOWED_DEVICES_MAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698