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

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

Issue 8662010: Rename chrome.experimental.webRequest to chrome.webRequest and chrome.webRequestBlocking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Regenerated documentation Created 9 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 kPageCapture, 116 kPageCapture,
117 kPlugin, 117 kPlugin,
118 kProxy, 118 kProxy,
119 kSocket, 119 kSocket,
120 kTab, 120 kTab,
121 kTts, 121 kTts,
122 kTtsEngine, 122 kTtsEngine,
123 kUnlimitedStorage, 123 kUnlimitedStorage,
124 kWebNavigation, 124 kWebNavigation,
125 kWebRequest, 125 kWebRequest,
126 kWebRequestBlocking,
126 kWebSocketProxyPrivate, 127 kWebSocketProxyPrivate,
127 kWebstorePrivate, 128 kWebstorePrivate,
128 kEnumBoundary 129 kEnumBoundary
129 }; 130 };
130 131
131 enum Flag { 132 enum Flag {
132 kFlagNone = 0, 133 kFlagNone = 0,
133 134
134 // Indicates if the permission can be accessed by hosted apps. 135 // Indicates if the permission can be accessed by hosted apps.
135 kFlagHostedApp = 1 << 0, 136 kFlagHostedApp = 1 << 0,
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 428
428 // The list of hosts that can be scripted by content scripts. 429 // The list of hosts that can be scripted by content scripts.
429 // TODO(jstritar): Rename to "user_script_hosts_"? 430 // TODO(jstritar): Rename to "user_script_hosts_"?
430 URLPatternSet scriptable_hosts_; 431 URLPatternSet scriptable_hosts_;
431 432
432 // The list of hosts this effectively grants access to. 433 // The list of hosts this effectively grants access to.
433 URLPatternSet effective_hosts_; 434 URLPatternSet effective_hosts_;
434 }; 435 };
435 436
436 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 437 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/webRequest.html ('k') | chrome/common/extensions/extension_permission_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698