| 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 namespace webview { | 10 namespace webview { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 extern const char kEventFrameNameChanged[]; | 39 extern const char kEventFrameNameChanged[]; |
| 40 extern const char kEventLoadAbort[]; | 40 extern const char kEventLoadAbort[]; |
| 41 extern const char kEventLoadCommit[]; | 41 extern const char kEventLoadCommit[]; |
| 42 extern const char kEventLoadProgress[]; | 42 extern const char kEventLoadProgress[]; |
| 43 extern const char kEventLoadRedirect[]; | 43 extern const char kEventLoadRedirect[]; |
| 44 extern const char kEventLoadStart[]; | 44 extern const char kEventLoadStart[]; |
| 45 extern const char kEventLoadStop[]; | 45 extern const char kEventLoadStop[]; |
| 46 extern const char kEventMessage[]; | 46 extern const char kEventMessage[]; |
| 47 extern const char kEventNewWindow[]; | 47 extern const char kEventNewWindow[]; |
| 48 extern const char kEventPermissionRequest[]; | 48 extern const char kEventPermissionRequest[]; |
| 49 extern const char kEventPluginDestroyed[]; | |
| 50 extern const char kEventResponsive[]; | 49 extern const char kEventResponsive[]; |
| 51 extern const char kEventSizeChanged[]; | 50 extern const char kEventSizeChanged[]; |
| 52 extern const char kEventUnresponsive[]; | 51 extern const char kEventUnresponsive[]; |
| 53 extern const char kEventZoomChange[]; | 52 extern const char kEventZoomChange[]; |
| 54 | 53 |
| 55 // Event related constants. | 54 // Event related constants. |
| 56 extern const char kWebViewEventPrefix[]; | 55 extern const char kWebViewEventPrefix[]; |
| 57 | 56 |
| 58 // Parameters/properties on events. | 57 // Parameters/properties on events. |
| 59 extern const char kContextMenuItems[]; | 58 extern const char kContextMenuItems[]; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 extern const char kMenuItemCommandId[]; | 118 extern const char kMenuItemCommandId[]; |
| 120 extern const char kMenuItemLabel[]; | 119 extern const char kMenuItemLabel[]; |
| 121 extern const char kPersistPrefix[]; | 120 extern const char kPersistPrefix[]; |
| 122 extern const char kStoragePartitionId[]; | 121 extern const char kStoragePartitionId[]; |
| 123 extern const unsigned int kMaxOutstandingPermissionRequests; | 122 extern const unsigned int kMaxOutstandingPermissionRequests; |
| 124 extern const int kInvalidPermissionRequestID; | 123 extern const int kInvalidPermissionRequestID; |
| 125 | 124 |
| 126 } // namespace webview | 125 } // namespace webview |
| 127 | 126 |
| 128 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ | 127 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_ |
| OLD | NEW |