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

Side by Side Diff: extensions/browser/guest_view/web_view/web_view_constants.h

Issue 2700473003: Support the removal of only session cookies or persistent cookies (Closed)
Patch Set: adding comment Created 3 years, 10 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Constants used for the WebView API. 5 // Constants used for the WebView API.
6 6
7 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ 7 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_
8 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ 8 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_
9 9
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 // 141 //
142 // Note that these are not in an enum because using enums to declare bitmasks 142 // Note that these are not in an enum because using enums to declare bitmasks
143 // results in the enum values being signed. 143 // results in the enum values being signed.
144 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_APPCACHE; 144 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_APPCACHE;
145 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_CACHE; 145 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_CACHE;
146 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_COOKIES; 146 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_COOKIES;
147 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS; 147 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS;
148 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB; 148 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB;
149 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE; 149 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE;
150 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_WEBSQL; 150 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_WEBSQL;
151 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_SESSION_COOKIES;
152 extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_PERSISTENT_COOKIES;
151 153
152 // Other. 154 // Other.
153 extern const char kWebViewContentScriptManagerKeyName[]; 155 extern const char kWebViewContentScriptManagerKeyName[];
154 156
155 } // namespace webview 157 } // namespace webview
156 158
157 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ 159 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698