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

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

Issue 83043005: Cast Extensions API: Factory method for creating a cast session (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove castSendTransport.create Created 7 years 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 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 kAudio, 45 kAudio,
46 kAudioCapture, 46 kAudioCapture,
47 kAutoTestPrivate, 47 kAutoTestPrivate,
48 kBackground, 48 kBackground,
49 kBluetooth, 49 kBluetooth,
50 kBookmark, 50 kBookmark,
51 kBookmarkManagerPrivate, 51 kBookmarkManagerPrivate,
52 kBrailleDisplayPrivate, 52 kBrailleDisplayPrivate,
53 kBrowsingData, 53 kBrowsingData,
54 kCast, 54 kCast,
55 kCastStreaming,
55 kChromeosInfoPrivate, 56 kChromeosInfoPrivate,
56 kClipboardRead, 57 kClipboardRead,
57 kClipboardWrite, 58 kClipboardWrite,
58 kCloudPrintPrivate, 59 kCloudPrintPrivate,
59 kCommandLinePrivate, 60 kCommandLinePrivate,
60 kContentSettings, 61 kContentSettings,
61 kContextMenus, 62 kContextMenus,
62 kCookie, 63 kCookie,
63 kDiagnostics, 64 kDiagnostics,
64 kDial, 65 kDial,
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 const char* const name_; 332 const char* const name_;
332 const int flags_; 333 const int flags_;
333 const int l10n_message_id_; 334 const int l10n_message_id_;
334 const PermissionMessage::ID message_id_; 335 const PermissionMessage::ID message_id_;
335 const APIPermissionConstructor api_permission_constructor_; 336 const APIPermissionConstructor api_permission_constructor_;
336 }; 337 };
337 338
338 } // namespace extensions 339 } // namespace extensions
339 340
340 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 341 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698