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 13 matching lines...) Expand all Loading... |
24 // Internal method bindings. | 24 // Internal method bindings. |
25 extern const char kMethodInternalAttach[]; | 25 extern const char kMethodInternalAttach[]; |
26 extern const char kMethodInternalAttachWindowTo[]; | 26 extern const char kMethodInternalAttachWindowTo[]; |
27 extern const char kMethodInternalTrackObjectLifetime[]; | 27 extern const char kMethodInternalTrackObjectLifetime[]; |
28 | 28 |
29 // Internal events | 29 // Internal events |
30 extern const char kEventInternalInstanceIDAllocated[]; | 30 extern const char kEventInternalInstanceIDAllocated[]; |
31 extern const char kEventInternalTrackedObjectGone[]; | 31 extern const char kEventInternalTrackedObjectGone[]; |
32 | 32 |
33 // Attributes. | 33 // Attributes. |
| 34 extern const char kAttributeAllowTransparency[]; |
34 extern const char kAttributeApi[]; | 35 extern const char kAttributeApi[]; |
35 extern const char kAttributeAutoSize[]; | 36 extern const char kAttributeAutoSize[]; |
36 extern const char kAttributeContentWindow[]; | 37 extern const char kAttributeContentWindow[]; |
37 extern const char kAttributeMaxHeight[]; | 38 extern const char kAttributeMaxHeight[]; |
38 extern const char kAttributeMaxWidth[]; | 39 extern const char kAttributeMaxWidth[]; |
39 extern const char kAttributeMinHeight[]; | 40 extern const char kAttributeMinHeight[]; |
40 extern const char kAttributeMinWidth[]; | 41 extern const char kAttributeMinWidth[]; |
41 extern const char kAttributeName[]; | 42 extern const char kAttributeName[]; |
42 extern const char kAttributePartition[]; | 43 extern const char kAttributePartition[]; |
43 extern const char kAttributeSrc[]; | 44 extern const char kAttributeSrc[]; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // Other. | 77 // Other. |
77 extern const char kBrowserPluginGuestManagerKeyName[]; | 78 extern const char kBrowserPluginGuestManagerKeyName[]; |
78 extern const int kInstanceIDNone; | 79 extern const int kInstanceIDNone; |
79 extern const int kInvalidPermissionRequestID; | 80 extern const int kInvalidPermissionRequestID; |
80 | 81 |
81 } // namespace browser_plugin | 82 } // namespace browser_plugin |
82 | 83 |
83 } // namespace content | 84 } // namespace content |
84 | 85 |
85 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 86 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
OLD | NEW |