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

Side by Side Diff: extensions/common/api/bluetooth/bluetooth_manifest_data.h

Issue 1096393002: API stubs for the BLE advertisement API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_ 5 #ifndef EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_
6 #define EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_ 6 #define EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 16 matching lines...) Expand all
27 27
28 // Gets the BluetoothManifestData for |extension|, or NULL if none was 28 // Gets the BluetoothManifestData for |extension|, or NULL if none was
29 // specified. 29 // specified.
30 static BluetoothManifestData* Get(const Extension* extension); 30 static BluetoothManifestData* Get(const Extension* extension);
31 31
32 static bool CheckRequest(const Extension* extension, 32 static bool CheckRequest(const Extension* extension,
33 const BluetoothPermissionRequest& request); 33 const BluetoothPermissionRequest& request);
34 34
35 static bool CheckSocketPermitted(const Extension* extension); 35 static bool CheckSocketPermitted(const Extension* extension);
36 static bool CheckLowEnergyPermitted(const Extension* extension); 36 static bool CheckLowEnergyPermitted(const Extension* extension);
37 static bool CheckPeripheralPermitted(const Extension* extensio);
armansito 2015/04/21 22:48:09 nit: s/extensio/extension/
rkc 2015/04/27 18:39:09 Done.
37 38
38 // Tries to construct the info based on |value|, as it would have appeared in 39 // Tries to construct the info based on |value|, as it would have appeared in
39 // the manifest. Sets |error| and returns an empty scoped_ptr on failure. 40 // the manifest. Sets |error| and returns an empty scoped_ptr on failure.
40 static scoped_ptr<BluetoothManifestData> FromValue(const base::Value& value, 41 static scoped_ptr<BluetoothManifestData> FromValue(const base::Value& value,
41 base::string16* error); 42 base::string16* error);
42 43
43 const BluetoothManifestPermission* permission() const { 44 const BluetoothManifestPermission* permission() const {
44 return permission_.get(); 45 return permission_.get();
45 } 46 }
46 47
47 private: 48 private:
48 scoped_ptr<BluetoothManifestPermission> permission_; 49 scoped_ptr<BluetoothManifestPermission> permission_;
49 }; 50 };
50 51
51 // Used for checking bluetooth permission. 52 // Used for checking bluetooth permission.
52 struct BluetoothPermissionRequest { 53 struct BluetoothPermissionRequest {
53 explicit BluetoothPermissionRequest(const std::string& uuid); 54 explicit BluetoothPermissionRequest(const std::string& uuid);
54 ~BluetoothPermissionRequest(); 55 ~BluetoothPermissionRequest();
55 56
56 std::string uuid; 57 std::string uuid;
57 }; 58 };
58 59
59 } // namespace extensions 60 } // namespace extensions
60 61
61 #endif // EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_ 62 #endif // EXTENSIONS_COMMON_API_BLUETOOTH_BLUETOOTH_MANIFEST_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698