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

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

Issue 2130803002: Deleting the copresence API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 kCastStreaming, 72 kCastStreaming,
73 kChromeosInfoPrivate, 73 kChromeosInfoPrivate,
74 kClipboardRead, 74 kClipboardRead,
75 kClipboardWrite, 75 kClipboardWrite,
76 kCloudPrintPrivate, 76 kCloudPrintPrivate,
77 kCommandLinePrivate, 77 kCommandLinePrivate,
78 kCommandsAccessibility, 78 kCommandsAccessibility,
79 kContentSettings, 79 kContentSettings,
80 kContextMenus, 80 kContextMenus,
81 kCookie, 81 kCookie,
82 kCopresence, 82 kCopresence, // Deleted
xiyuan 2016/07/07 16:16:13 nit: kCopresence -> kDeletedCopresence so that it
Charlie 2016/07/07 20:06:17 Done.
83 kCopresencePrivate, 83 kCopresencePrivate,
84 kCryptotokenPrivate, 84 kCryptotokenPrivate,
85 kDataReductionProxy, 85 kDataReductionProxy,
86 kDiagnostics, 86 kDiagnostics,
87 kDial, 87 kDial,
88 kDebugger, 88 kDebugger,
89 kDeclarative, 89 kDeclarative,
90 kDeclarativeContent, 90 kDeclarativeContent,
91 kDeclarativeWebRequest, 91 kDeclarativeWebRequest,
92 kDesktopCapture, 92 kDesktopCapture,
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 433
434 const APIPermission::ID id_; 434 const APIPermission::ID id_;
435 const char* const name_; 435 const char* const name_;
436 const int flags_; 436 const int flags_;
437 const APIPermissionConstructor api_permission_constructor_; 437 const APIPermissionConstructor api_permission_constructor_;
438 }; 438 };
439 439
440 } // namespace extensions 440 } // namespace extensions
441 441
442 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 442 #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