| 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 "extensions/common/api/bluetooth/bluetooth_manifest_permission.h" | 5 #include "extensions/common/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 "device/bluetooth/bluetooth_uuid.h" | 11 #include "device/bluetooth/bluetooth_uuid.h" |
| 12 #include "extensions/common/api/bluetooth/bluetooth_manifest_data.h" | 12 #include "extensions/common/api/bluetooth/bluetooth_manifest_data.h" |
| 13 #include "extensions/common/api/extensions_manifest_types.h" | 13 #include "extensions/common/api/extensions_manifest_types.h" |
| 14 #include "extensions/common/error_utils.h" | 14 #include "extensions/common/error_utils.h" |
| 15 #include "extensions/common/extension_messages.h" | |
| 16 #include "extensions/common/manifest_constants.h" | 15 #include "extensions/common/manifest_constants.h" |
| 17 #include "grit/extensions_strings.h" | 16 #include "grit/extensions_strings.h" |
| 18 #include "ipc/ipc_message.h" | 17 #include "ipc/ipc_message.h" |
| 19 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 20 | 19 |
| 21 namespace extensions { | 20 namespace extensions { |
| 22 | 21 |
| 23 namespace bluetooth_errors { | 22 namespace bluetooth_errors { |
| 24 const char kErrorInvalidUuid[] = "Invalid UUID '*'"; | 23 const char kErrorInvalidUuid[] = "Invalid UUID '*'"; |
| 25 } | 24 } |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 result->uuids_ = base::STLSetIntersection<BluetoothUuidSet>( | 192 result->uuids_ = base::STLSetIntersection<BluetoothUuidSet>( |
| 194 uuids_, other->uuids_); | 193 uuids_, other->uuids_); |
| 195 return result.release(); | 194 return result.release(); |
| 196 } | 195 } |
| 197 | 196 |
| 198 void BluetoothManifestPermission::AddPermission(const std::string& uuid) { | 197 void BluetoothManifestPermission::AddPermission(const std::string& uuid) { |
| 199 uuids_.insert(uuid); | 198 uuids_.insert(uuid); |
| 200 } | 199 } |
| 201 | 200 |
| 202 } // namespace extensions | 201 } // namespace extensions |
| OLD | NEW |