| 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 25 matching lines...) Expand all Loading... |
| 36 extern const char kAttributeContentWindow[]; | 36 extern const char kAttributeContentWindow[]; |
| 37 extern const char kAttributeMaxHeight[]; | 37 extern const char kAttributeMaxHeight[]; |
| 38 extern const char kAttributeMaxWidth[]; | 38 extern const char kAttributeMaxWidth[]; |
| 39 extern const char kAttributeMinHeight[]; | 39 extern const char kAttributeMinHeight[]; |
| 40 extern const char kAttributeMinWidth[]; | 40 extern const char kAttributeMinWidth[]; |
| 41 extern const char kAttributeName[]; | 41 extern const char kAttributeName[]; |
| 42 extern const char kAttributePartition[]; | 42 extern const char kAttributePartition[]; |
| 43 extern const char kAttributeSrc[]; | 43 extern const char kAttributeSrc[]; |
| 44 | 44 |
| 45 // Events. | 45 // Events. |
| 46 extern const char kEventDialog[]; |
| 46 extern const char kEventNewWindow[]; | 47 extern const char kEventNewWindow[]; |
| 47 extern const char kEventRequestPermission[]; | 48 extern const char kEventRequestPermission[]; |
| 48 extern const char kEventResponsive[]; | 49 extern const char kEventResponsive[]; |
| 49 extern const char kEventSizeChanged[]; | 50 extern const char kEventSizeChanged[]; |
| 50 extern const char kEventUnresponsive[]; | 51 extern const char kEventUnresponsive[]; |
| 51 | 52 |
| 52 // Parameters/properties on events. | 53 // Parameters/properties on events. |
| 54 extern const char kDefaultPromptText[]; |
| 53 extern const char kId[]; | 55 extern const char kId[]; |
| 54 extern const char kInitialHeight[]; | 56 extern const char kInitialHeight[]; |
| 55 extern const char kInitialWidth[]; | 57 extern const char kInitialWidth[]; |
| 56 extern const char kIsTopLevel[]; | 58 extern const char kIsTopLevel[]; |
| 57 extern const char kLastUnlockedBySelf[]; | 59 extern const char kLastUnlockedBySelf[]; |
| 60 extern const char kMessageText[]; |
| 61 extern const char kMessageType[]; |
| 58 extern const char kName[]; | 62 extern const char kName[]; |
| 59 extern const char kNewHeight[]; | 63 extern const char kNewHeight[]; |
| 60 extern const char kNewWidth[]; | 64 extern const char kNewWidth[]; |
| 61 extern const char kOldHeight[]; | 65 extern const char kOldHeight[]; |
| 62 extern const char kOldWidth[]; | 66 extern const char kOldWidth[]; |
| 63 extern const char kPermission[]; | 67 extern const char kPermission[]; |
| 64 extern const char kPermissionTypeDownload[]; | 68 extern const char kPermissionTypeDownload[]; |
| 65 extern const char kPermissionTypeGeolocation[]; | 69 extern const char kPermissionTypeGeolocation[]; |
| 66 extern const char kPermissionTypeMedia[]; | 70 extern const char kPermissionTypeMedia[]; |
| 67 extern const char kPermissionTypeNewWindow[]; | 71 extern const char kPermissionTypeNewWindow[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 83 | 87 |
| 84 // Other. | 88 // Other. |
| 85 extern const char kBrowserPluginGuestManagerKeyName[]; | 89 extern const char kBrowserPluginGuestManagerKeyName[]; |
| 86 extern const int kInstanceIDNone; | 90 extern const int kInstanceIDNone; |
| 87 | 91 |
| 88 } // namespace browser_plugin | 92 } // namespace browser_plugin |
| 89 | 93 |
| 90 } // namespace content | 94 } // namespace content |
| 91 | 95 |
| 92 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 96 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
| OLD | NEW |