| OLD | NEW |
| 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 "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 // Note that these are not in an enum because using enums to declare bitmasks | 129 // Note that these are not in an enum because using enums to declare bitmasks |
| 130 // results in the enum values being signed. | 130 // results in the enum values being signed. |
| 131 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_APPCACHE; | 131 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_APPCACHE; |
| 132 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_CACHE; | 132 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_CACHE; |
| 133 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_COOKIES; | 133 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_COOKIES; |
| 134 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS; | 134 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS; |
| 135 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB; | 135 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB; |
| 136 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE; | 136 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE; |
| 137 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_WEBSQL; | 137 extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_WEBSQL; |
| 138 | 138 |
| 139 // Other. |
| 140 extern const char kWebViewContentScriptManagerKeyName[]; |
| 141 |
| 139 } // namespace webview | 142 } // namespace webview |
| 140 | 143 |
| 141 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ | 144 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ |
| OLD | NEW |