| OLD | NEW |
| 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 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h
" | 5 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h
" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.h" | 11 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.h" |
| 12 #include "chrome/common/extensions/api/manifest_types.h" | 12 #include "chrome/common/extensions/api/manifest_types.h" |
| 13 #include "device/bluetooth/bluetooth_utils.h" | 13 #include "device/bluetooth/bluetooth_uuid.h" |
| 14 #include "extensions/common/error_utils.h" | 14 #include "extensions/common/error_utils.h" |
| 15 #include "extensions/common/extension_messages.h" | 15 #include "extensions/common/extension_messages.h" |
| 16 #include "extensions/common/manifest_constants.h" | 16 #include "extensions/common/manifest_constants.h" |
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
| 18 #include "ipc/ipc_message.h" | 18 #include "ipc/ipc_message.h" |
| 19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 20 | 20 |
| 21 namespace extensions { | 21 namespace extensions { |
| 22 | 22 |
| 23 namespace bluetooth_errors { | 23 namespace bluetooth_errors { |
| 24 const char kErrorInvalidUuid[] = "Invalid UUID '*'"; | 24 const char kErrorInvalidUuid[] = "Invalid UUID '*'"; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace errors = bluetooth_errors; | 27 namespace errors = bluetooth_errors; |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| 30 | 30 |
| 31 bool ParseUuid(BluetoothManifestPermission* permission, | 31 bool ParseUuid(BluetoothManifestPermission* permission, |
| 32 const std::string& uuid, | 32 const std::string& uuid, |
| 33 base::string16* error) { | 33 base::string16* error) { |
| 34 std::string canonical_uuid = device::bluetooth_utils::CanonicalUuid(uuid); | 34 device::BluetoothUUID bt_uuid(uuid); |
| 35 if (canonical_uuid.empty()) { | 35 if (!bt_uuid.IsValid()) { |
| 36 *error = ErrorUtils::FormatErrorMessageUTF16( | 36 *error = ErrorUtils::FormatErrorMessageUTF16( |
| 37 errors::kErrorInvalidUuid, uuid); | 37 errors::kErrorInvalidUuid, uuid); |
| 38 return false; | 38 return false; |
| 39 } | 39 } |
| 40 permission->AddPermission(uuid); | 40 permission->AddPermission(uuid); |
| 41 return true; | 41 return true; |
| 42 } | 42 } |
| 43 | 43 |
| 44 bool ParseUuidArray(BluetoothManifestPermission* permission, | 44 bool ParseUuidArray(BluetoothManifestPermission* permission, |
| 45 const scoped_ptr<std::vector<std::string> >& uuids, | 45 const scoped_ptr<std::vector<std::string> >& uuids, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 76 return scoped_ptr<BluetoothManifestPermission>(); | 76 return scoped_ptr<BluetoothManifestPermission>(); |
| 77 } | 77 } |
| 78 } | 78 } |
| 79 return result.Pass(); | 79 return result.Pass(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 bool BluetoothManifestPermission::CheckRequest( | 82 bool BluetoothManifestPermission::CheckRequest( |
| 83 const Extension* extension, | 83 const Extension* extension, |
| 84 const BluetoothPermissionRequest& request) const { | 84 const BluetoothPermissionRequest& request) const { |
| 85 | 85 |
| 86 std::string canonical_param_uuid = | 86 device::BluetoothUUID param_uuid(request.uuid); |
| 87 device::bluetooth_utils::CanonicalUuid(request.uuid); | |
| 88 for (BluetoothUuidSet::const_iterator it = uuids_.begin(); | 87 for (BluetoothUuidSet::const_iterator it = uuids_.begin(); |
| 89 it != uuids_.end(); | 88 it != uuids_.end(); |
| 90 ++it) { | 89 ++it) { |
| 91 std::string canonical_uuid = device::bluetooth_utils::CanonicalUuid(*it); | 90 device::BluetoothUUID uuid(*it); |
| 92 if (canonical_uuid == canonical_param_uuid) | 91 if (param_uuid == uuid) |
| 93 return true; | 92 return true; |
| 94 } | 93 } |
| 95 return false; | 94 return false; |
| 96 } | 95 } |
| 97 | 96 |
| 98 std::string BluetoothManifestPermission::name() const { | 97 std::string BluetoothManifestPermission::name() const { |
| 99 return manifest_keys::kBluetooth; | 98 return manifest_keys::kBluetooth; |
| 100 } | 99 } |
| 101 | 100 |
| 102 std::string BluetoothManifestPermission::id() const { return name(); } | 101 std::string BluetoothManifestPermission::id() const { return name(); } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 210 |
| 212 void BluetoothManifestPermission::Log(std::string* log) const { | 211 void BluetoothManifestPermission::Log(std::string* log) const { |
| 213 IPC::LogParam(uuids_, log); | 212 IPC::LogParam(uuids_, log); |
| 214 } | 213 } |
| 215 | 214 |
| 216 void BluetoothManifestPermission::AddPermission(const std::string& uuid) { | 215 void BluetoothManifestPermission::AddPermission(const std::string& uuid) { |
| 217 uuids_.insert(uuid); | 216 uuids_.insert(uuid); |
| 218 } | 217 } |
| 219 | 218 |
| 220 } // namespace extensions | 219 } // namespace extensions |
| OLD | NEW |