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

Side by Side Diff: chrome/common/extensions/extension_permission_set.h

Issue 10257006: Move Declarative Web Request API out of experimental and make it a feature (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 8 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 kBookmark, 101 kBookmark,
102 kBrowsingData, 102 kBrowsingData,
103 kChromeAuthPrivate, 103 kChromeAuthPrivate,
104 kChromeosInfoPrivate, 104 kChromeosInfoPrivate,
105 kClipboardRead, 105 kClipboardRead,
106 kClipboardWrite, 106 kClipboardWrite,
107 kContentSettings, 107 kContentSettings,
108 kContextMenus, 108 kContextMenus,
109 kCookie, 109 kCookie,
110 kDebugger, 110 kDebugger,
111 kDeclarative,
112 kDeclarativeWebRequest,
111 kDevtools, 113 kDevtools,
112 kExperimental, 114 kExperimental,
113 kFileBrowserHandler, 115 kFileBrowserHandler,
114 kFileBrowserPrivate, 116 kFileBrowserPrivate,
115 kGeolocation, 117 kGeolocation,
116 kHistory, 118 kHistory,
117 kIdle, 119 kIdle,
118 kInput, 120 kInput,
119 kInputMethodPrivate, 121 kInputMethodPrivate,
120 kKeybinding, 122 kKeybinding,
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 447
446 // The list of hosts this effectively grants access to. 448 // The list of hosts this effectively grants access to.
447 URLPatternSet effective_hosts_; 449 URLPatternSet effective_hosts_;
448 450
449 // A set of oauth2 scopes that are used by the identity API to create OAuth2 451 // A set of oauth2 scopes that are used by the identity API to create OAuth2
450 // tokens for accessing the Google Account of the signed-in sync account. 452 // tokens for accessing the Google Account of the signed-in sync account.
451 ExtensionOAuth2Scopes scopes_; 453 ExtensionOAuth2Scopes scopes_;
452 }; 454 };
453 455
454 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 456 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/samples.json ('k') | chrome/common/extensions/extension_permission_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698