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 #ifndef CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 5 #ifndef CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
6 #define CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 6 #define CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
7 | 7 |
8 namespace content { | 8 namespace content { |
9 | 9 |
10 namespace browser_plugin { | 10 namespace browser_plugin { |
(...skipping 26 matching lines...) Expand all Loading... |
37 extern const char kAttributeMaxWidth[]; | 37 extern const char kAttributeMaxWidth[]; |
38 extern const char kAttributeMinHeight[]; | 38 extern const char kAttributeMinHeight[]; |
39 extern const char kAttributeMinWidth[]; | 39 extern const char kAttributeMinWidth[]; |
40 extern const char kAttributeName[]; | 40 extern const char kAttributeName[]; |
41 extern const char kAttributePartition[]; | 41 extern const char kAttributePartition[]; |
42 extern const char kAttributeSrc[]; | 42 extern const char kAttributeSrc[]; |
43 | 43 |
44 // Events. | 44 // Events. |
45 extern const char kEventClose[]; | 45 extern const char kEventClose[]; |
46 extern const char kEventConsoleMessage[]; | 46 extern const char kEventConsoleMessage[]; |
47 extern const char kEventContentLoad[]; | |
48 extern const char kEventExit[]; | 47 extern const char kEventExit[]; |
49 extern const char kEventLoadAbort[]; | 48 extern const char kEventLoadAbort[]; |
50 extern const char kEventLoadRedirect[]; | 49 extern const char kEventLoadRedirect[]; |
51 extern const char kEventLoadStart[]; | 50 extern const char kEventLoadStart[]; |
52 extern const char kEventNewWindow[]; | 51 extern const char kEventNewWindow[]; |
53 extern const char kEventRequestPermission[]; | 52 extern const char kEventRequestPermission[]; |
54 extern const char kEventResponsive[]; | 53 extern const char kEventResponsive[]; |
55 extern const char kEventSizeChanged[]; | 54 extern const char kEventSizeChanged[]; |
56 extern const char kEventUnresponsive[]; | 55 extern const char kEventUnresponsive[]; |
57 | 56 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 | 94 |
96 // Other. | 95 // Other. |
97 extern const char kBrowserPluginGuestManagerKeyName[]; | 96 extern const char kBrowserPluginGuestManagerKeyName[]; |
98 extern const int kInstanceIDNone; | 97 extern const int kInstanceIDNone; |
99 | 98 |
100 } // namespace browser_plugin | 99 } // namespace browser_plugin |
101 | 100 |
102 } // namespace content | 101 } // namespace content |
103 | 102 |
104 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 103 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
OLD | NEW |