OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/common/browser_plugin/browser_plugin_constants.h" | 5 #include "content/common/browser_plugin/browser_plugin_constants.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 namespace browser_plugin { | 9 namespace browser_plugin { |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 const char kAttributeMaxWidth[] = "maxwidth"; | 36 const char kAttributeMaxWidth[] = "maxwidth"; |
37 const char kAttributeMinHeight[] = "minheight"; | 37 const char kAttributeMinHeight[] = "minheight"; |
38 const char kAttributeMinWidth[] = "minwidth"; | 38 const char kAttributeMinWidth[] = "minwidth"; |
39 const char kAttributeName[] = "name"; | 39 const char kAttributeName[] = "name"; |
40 const char kAttributePartition[] = "partition"; | 40 const char kAttributePartition[] = "partition"; |
41 const char kAttributeSrc[] = "src"; | 41 const char kAttributeSrc[] = "src"; |
42 | 42 |
43 // Events. | 43 // Events. |
44 const char kEventClose[] = "close"; | 44 const char kEventClose[] = "close"; |
45 const char kEventConsoleMessage[] = "consolemessage"; | 45 const char kEventConsoleMessage[] = "consolemessage"; |
46 const char kEventContentLoad[] = "contentload"; | |
47 const char kEventExit[] = "exit"; | 46 const char kEventExit[] = "exit"; |
48 const char kEventLoadAbort[] = "loadabort"; | 47 const char kEventLoadAbort[] = "loadabort"; |
49 const char kEventLoadRedirect[] = "loadredirect"; | 48 const char kEventLoadRedirect[] = "loadredirect"; |
50 const char kEventLoadStart[] = "loadstart"; | 49 const char kEventLoadStart[] = "loadstart"; |
51 const char kEventNewWindow[] = "newwindow"; | 50 const char kEventNewWindow[] = "newwindow"; |
52 const char kEventRequestPermission[] = "permissionrequest"; | 51 const char kEventRequestPermission[] = "permissionrequest"; |
53 const char kEventResponsive[] = "responsive"; | 52 const char kEventResponsive[] = "responsive"; |
54 const char kEventSizeChanged[] = "sizechanged"; | 53 const char kEventSizeChanged[] = "sizechanged"; |
55 const char kEventUnresponsive[] = "unresponsive"; | 54 const char kEventUnresponsive[] = "unresponsive"; |
56 | 55 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 const char kErrorCannotRemovePartition[] = | 94 const char kErrorCannotRemovePartition[] = |
96 "Cannot remove partition attribute after navigating."; | 95 "Cannot remove partition attribute after navigating."; |
97 | 96 |
98 // Other. | 97 // Other. |
99 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; | 98 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; |
100 const int kInstanceIDNone = 0; | 99 const int kInstanceIDNone = 0; |
101 | 100 |
102 } // namespace browser_plugin | 101 } // namespace browser_plugin |
103 | 102 |
104 } // namespace content | 103 } // namespace content |
OLD | NEW |