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 24 matching lines...) Expand all Loading... |
35 const char kAttributeAutoSize[] = "autosize"; | 35 const char kAttributeAutoSize[] = "autosize"; |
36 const char kAttributeContentWindow[] = "contentWindow"; | 36 const char kAttributeContentWindow[] = "contentWindow"; |
37 const char kAttributeMaxHeight[] = "maxheight"; | 37 const char kAttributeMaxHeight[] = "maxheight"; |
38 const char kAttributeMaxWidth[] = "maxwidth"; | 38 const char kAttributeMaxWidth[] = "maxwidth"; |
39 const char kAttributeMinHeight[] = "minheight"; | 39 const char kAttributeMinHeight[] = "minheight"; |
40 const char kAttributeMinWidth[] = "minwidth"; | 40 const char kAttributeMinWidth[] = "minwidth"; |
41 const char kAttributeName[] = "name"; | 41 const char kAttributeName[] = "name"; |
42 const char kAttributePartition[] = "partition"; | 42 const char kAttributePartition[] = "partition"; |
43 const char kAttributeSrc[] = "src"; | 43 const char kAttributeSrc[] = "src"; |
44 | 44 |
45 // Events. | |
46 const char kEventSizeChanged[] = "sizechanged"; | |
47 | |
48 // Parameters/properties on events. | 45 // Parameters/properties on events. |
49 const char kDefaultPromptText[] = "defaultPromptText"; | 46 const char kDefaultPromptText[] = "defaultPromptText"; |
50 const char kId[] = "id"; | 47 const char kId[] = "id"; |
51 const char kInitialHeight[] = "initialHeight"; | 48 const char kInitialHeight[] = "initialHeight"; |
52 const char kInitialWidth[] = "initialWidth"; | 49 const char kInitialWidth[] = "initialWidth"; |
53 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; | 50 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; |
54 const char kMessageText[] = "messageText"; | 51 const char kMessageText[] = "messageText"; |
55 const char kMessageType[] = "messageType"; | 52 const char kMessageType[] = "messageType"; |
56 const char kName[] = "name"; | 53 const char kName[] = "name"; |
57 const char kPermission[] = "permission"; | 54 const char kPermission[] = "permission"; |
(...skipping 22 matching lines...) Expand all Loading... |
80 "Cannot remove partition attribute after navigating."; | 77 "Cannot remove partition attribute after navigating."; |
81 | 78 |
82 // Other. | 79 // Other. |
83 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; | 80 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; |
84 const int kInstanceIDNone = 0; | 81 const int kInstanceIDNone = 0; |
85 const int kInvalidPermissionRequestID = 0; | 82 const int kInvalidPermissionRequestID = 0; |
86 | 83 |
87 } // namespace browser_plugin | 84 } // namespace browser_plugin |
88 | 85 |
89 } // namespace content | 86 } // namespace content |
OLD | NEW |