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

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

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 #include "extensions/browser/guest_view/web_view/web_view_constants.h" 5 #include "extensions/browser/guest_view/web_view/web_view_constants.h"
6 6
7 namespace webview { 7 namespace webview {
8 8
9 // Attributes. 9 // Attributes.
10 const char kAttributeAllowTransparency[] = "allowtransparency"; 10 const char kAttributeAllowTransparency[] = "allowtransparency";
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 const int kInvalidPermissionRequestID = 0; 131 const int kInvalidPermissionRequestID = 0;
132 132
133 // ClearData API constants. 133 // ClearData API constants.
134 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_APPCACHE = 1 << 0; 134 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_APPCACHE = 1 << 0;
135 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_CACHE = 1 << 1; 135 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_CACHE = 1 << 1;
136 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_COOKIES = 1 << 2; 136 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_COOKIES = 1 << 2;
137 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 3; 137 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 3;
138 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB = 1 << 4; 138 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB = 1 << 4;
139 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 5; 139 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 5;
140 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_WEBSQL = 1 << 6; 140 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_WEBSQL = 1 << 6;
141 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_SESSION_COOKIES = 1 << 7;
142 const uint32_t WEB_VIEW_REMOVE_DATA_MASK_PERSISTENT_COOKIES = 1 << 8;
141 143
142 // Other. 144 // Other.
143 const char kWebViewContentScriptManagerKeyName[] = 145 const char kWebViewContentScriptManagerKeyName[] =
144 "web_view_content_script_manager"; 146 "web_view_content_script_manager";
145 } // namespace webview 147 } // namespace webview
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_constants.h ('k') | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698