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

Side by Side Diff: extensions/common/permissions/api_permission.h

Issue 145663004: Replace "bluetooth" permission with manifest property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused function. Created 6 years, 10 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
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_PERMISSIONS_API_PERMISSION_H_ 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 26 matching lines...) Expand all
37 // Real permissions. 37 // Real permissions.
38 kActiveTab, 38 kActiveTab,
39 kActivityLogPrivate, 39 kActivityLogPrivate,
40 kAdView, 40 kAdView,
41 kAlarms, 41 kAlarms,
42 kAlwaysOnTopWindows, 42 kAlwaysOnTopWindows,
43 kAudio, 43 kAudio,
44 kAudioCapture, 44 kAudioCapture,
45 kAutoTestPrivate, 45 kAutoTestPrivate,
46 kBackground, 46 kBackground,
47 kBluetooth,
48 kBookmark, 47 kBookmark,
49 kBookmarkManagerPrivate, 48 kBookmarkManagerPrivate,
50 kBrailleDisplayPrivate, 49 kBrailleDisplayPrivate,
51 kBrowsingData, 50 kBrowsingData,
52 kCast, 51 kCast,
53 kCastStreaming, 52 kCastStreaming,
54 kChromeosInfoPrivate, 53 kChromeosInfoPrivate,
55 kClipboardRead, 54 kClipboardRead,
56 kClipboardWrite, 55 kClipboardWrite,
57 kCloudPrintPrivate, 56 kCloudPrintPrivate,
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 const char* const name_; 332 const char* const name_;
334 const int flags_; 333 const int flags_;
335 const int l10n_message_id_; 334 const int l10n_message_id_;
336 const PermissionMessage::ID message_id_; 335 const PermissionMessage::ID message_id_;
337 const APIPermissionConstructor api_permission_constructor_; 336 const APIPermissionConstructor api_permission_constructor_;
338 }; 337 };
339 338
340 } // namespace extensions 339 } // namespace extensions
341 340
342 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 341 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698