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

Side by Side Diff: chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc

Issue 194333002: Move extension_messages.h to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 6 years, 9 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 | Annotate | Revision Log
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 #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 "chrome/common/extensions/extension_messages.h"
14 #include "device/bluetooth/bluetooth_utils.h" 13 #include "device/bluetooth/bluetooth_utils.h"
15 #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" 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 kErrorInvalidProfileUuid[] = "Invalid UUID '*'"; 24 const char kErrorInvalidProfileUuid[] = "Invalid UUID '*'";
25 } 25 }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 void BluetoothManifestPermission::Log(std::string* log) const { 213 void BluetoothManifestPermission::Log(std::string* log) const {
214 IPC::LogParam(profile_uuids_, log); 214 IPC::LogParam(profile_uuids_, log);
215 } 215 }
216 216
217 void BluetoothManifestPermission::AddPermission( 217 void BluetoothManifestPermission::AddPermission(
218 const std::string& profile_uuid) { 218 const std::string& profile_uuid) {
219 profile_uuids_.insert(profile_uuid); 219 profile_uuids_.insert(profile_uuid);
220 } 220 }
221 221
222 } // namespace extensions 222 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/common/extensions/api/sockets/sockets_manifest_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698