| 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 <stdint.h> | 10 #include <stdint.h> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |