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 13 matching lines...) Expand all Loading... |
24 const char kMethodInternalAttach[] = "-internal-attach"; | 24 const char kMethodInternalAttach[] = "-internal-attach"; |
25 const char kMethodInternalAttachWindowTo[] = "-internal-attachWindowTo"; | 25 const char kMethodInternalAttachWindowTo[] = "-internal-attachWindowTo"; |
26 const char kMethodInternalTrackObjectLifetime[] = | 26 const char kMethodInternalTrackObjectLifetime[] = |
27 "-internal-trackObjectLifetime"; | 27 "-internal-trackObjectLifetime"; |
28 | 28 |
29 // Internal events. | 29 // Internal events. |
30 const char kEventInternalInstanceIDAllocated[] = "instanceid-allocated"; | 30 const char kEventInternalInstanceIDAllocated[] = "instanceid-allocated"; |
31 const char kEventInternalTrackedObjectGone[] = "trackedobjectgone"; | 31 const char kEventInternalTrackedObjectGone[] = "trackedobjectgone"; |
32 | 32 |
33 // Attributes. | 33 // Attributes. |
| 34 const char kAttributeAllowTransparency[] = "allowtransparency"; |
34 const char kAttributeApi[] = "api"; | 35 const char kAttributeApi[] = "api"; |
35 const char kAttributeAutoSize[] = "autosize"; | 36 const char kAttributeAutoSize[] = "autosize"; |
36 const char kAttributeContentWindow[] = "contentWindow"; | 37 const char kAttributeContentWindow[] = "contentWindow"; |
37 const char kAttributeMaxHeight[] = "maxheight"; | 38 const char kAttributeMaxHeight[] = "maxheight"; |
38 const char kAttributeMaxWidth[] = "maxwidth"; | 39 const char kAttributeMaxWidth[] = "maxwidth"; |
39 const char kAttributeMinHeight[] = "minheight"; | 40 const char kAttributeMinHeight[] = "minheight"; |
40 const char kAttributeMinWidth[] = "minwidth"; | 41 const char kAttributeMinWidth[] = "minwidth"; |
41 const char kAttributeName[] = "name"; | 42 const char kAttributeName[] = "name"; |
42 const char kAttributePartition[] = "partition"; | 43 const char kAttributePartition[] = "partition"; |
43 const char kAttributeSrc[] = "src"; | 44 const char kAttributeSrc[] = "src"; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "Cannot remove partition attribute after navigating."; | 78 "Cannot remove partition attribute after navigating."; |
78 | 79 |
79 // Other. | 80 // Other. |
80 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; | 81 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; |
81 const int kInstanceIDNone = 0; | 82 const int kInstanceIDNone = 0; |
82 const int kInvalidPermissionRequestID = 0; | 83 const int kInvalidPermissionRequestID = 0; |
83 | 84 |
84 } // namespace browser_plugin | 85 } // namespace browser_plugin |
85 | 86 |
86 } // namespace content | 87 } // namespace content |
OLD | NEW |