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

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

Issue 959413003: Implement <webview>.addContentScript/removeContentScript API [1] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 // ClearData API constants. 120 // ClearData API constants.
121 const uint32 WEB_VIEW_REMOVE_DATA_MASK_APPCACHE = 1 << 0; 121 const uint32 WEB_VIEW_REMOVE_DATA_MASK_APPCACHE = 1 << 0;
122 const uint32 WEB_VIEW_REMOVE_DATA_MASK_CACHE = 1 << 1; 122 const uint32 WEB_VIEW_REMOVE_DATA_MASK_CACHE = 1 << 1;
123 const uint32 WEB_VIEW_REMOVE_DATA_MASK_COOKIES = 1 << 2; 123 const uint32 WEB_VIEW_REMOVE_DATA_MASK_COOKIES = 1 << 2;
124 const uint32 WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 3; 124 const uint32 WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 3;
125 const uint32 WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB = 1 << 4; 125 const uint32 WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB = 1 << 4;
126 const uint32 WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 5; 126 const uint32 WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 5;
127 const uint32 WEB_VIEW_REMOVE_DATA_MASK_WEBSQL = 1 << 6; 127 const uint32 WEB_VIEW_REMOVE_DATA_MASK_WEBSQL = 1 << 6;
128 128
129 // Other.
130 const char kWebViewContentScriptManagerKeyName[] =
131 "web_view_content_script_manager";
129 } // namespace webview 132 } // namespace webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698