| 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_
|
|
|