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

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

Issue 9274004: Take the Extension Storage API out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 kIme, 113 kIme,
114 kInputMethodPrivate, 114 kInputMethodPrivate,
115 kManagement, 115 kManagement,
116 kMediaPlayerPrivate, 116 kMediaPlayerPrivate,
117 kMetricsPrivate, 117 kMetricsPrivate,
118 kNotification, 118 kNotification,
119 kPageCapture, 119 kPageCapture,
120 kPlugin, 120 kPlugin,
121 kProxy, 121 kProxy,
122 kSocket, 122 kSocket,
123 kStorage,
123 kSystemPrivate, 124 kSystemPrivate,
124 kTab, 125 kTab,
125 kTerminalPrivate, 126 kTerminalPrivate,
126 kTts, 127 kTts,
127 kTtsEngine, 128 kTtsEngine,
128 kUnlimitedStorage, 129 kUnlimitedStorage,
129 kWebNavigation, 130 kWebNavigation,
130 kWebRequest, 131 kWebRequest,
131 kWebRequestBlocking, 132 kWebRequestBlocking,
132 kWebSocketProxyPrivate, 133 kWebSocketProxyPrivate,
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 473
473 // The list of hosts that can be scripted by content scripts. 474 // The list of hosts that can be scripted by content scripts.
474 // TODO(jstritar): Rename to "user_script_hosts_"? 475 // TODO(jstritar): Rename to "user_script_hosts_"?
475 URLPatternSet scriptable_hosts_; 476 URLPatternSet scriptable_hosts_;
476 477
477 // The list of hosts this effectively grants access to. 478 // The list of hosts this effectively grants access to.
478 URLPatternSet effective_hosts_; 479 URLPatternSet effective_hosts_;
479 }; 480 };
480 481
481 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ 482 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/storage.html ('k') | chrome/common/extensions/extension_permission_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698