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

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: 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 kBookmark, 100 kBookmark,
101 kBrowsingData, 101 kBrowsingData,
102 kChromeAuthPrivate, 102 kChromeAuthPrivate,
103 kChromeosInfoPrivate, 103 kChromeosInfoPrivate,
104 kClipboardRead, 104 kClipboardRead,
105 kClipboardWrite, 105 kClipboardWrite,
106 kContentSettings, 106 kContentSettings,
107 kContextMenus, 107 kContextMenus,
108 kCookie, 108 kCookie,
109 kDebugger, 109 kDebugger,
110 kDeclarative,
111 kDeclarativeWebRequest,
110 kDevtools, 112 kDevtools,
111 kExperimental, 113 kExperimental,
112 kFileBrowserHandler, 114 kFileBrowserHandler,
113 kFileBrowserPrivate, 115 kFileBrowserPrivate,
114 kGeolocation, 116 kGeolocation,
115 kHistory, 117 kHistory,
116 kIdle, 118 kIdle,
117 kInput, 119 kInput,
118 kInputMethodPrivate, 120 kInputMethodPrivate,
119 kKeybinding, 121 kKeybinding,
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 445
444 // The list of hosts this effectively grants access to. 446 // The list of hosts this effectively grants access to.
445 URLPatternSet effective_hosts_; 447 URLPatternSet effective_hosts_;
446 448
447 // A set of oauth2 scopes that are used by the identity API to create OAuth2 449 // A set of oauth2 scopes that are used by the identity API to create OAuth2
448 // tokens for accessing the Google Account of the signed-in sync account. 450 // tokens for accessing the Google Account of the signed-in sync account.
449 ExtensionOAuth2Scopes scopes_; 451 ExtensionOAuth2Scopes scopes_;
450 }; 452 };
451 453
452 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 454 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698