| 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 26 matching lines...) Expand all Loading... |
| 37 const char kAttributeContentWindow[] = "contentWindow"; | 37 const char kAttributeContentWindow[] = "contentWindow"; |
| 38 const char kAttributeMaxHeight[] = "maxheight"; | 38 const char kAttributeMaxHeight[] = "maxheight"; |
| 39 const char kAttributeMaxWidth[] = "maxwidth"; | 39 const char kAttributeMaxWidth[] = "maxwidth"; |
| 40 const char kAttributeMinHeight[] = "minheight"; | 40 const char kAttributeMinHeight[] = "minheight"; |
| 41 const char kAttributeMinWidth[] = "minwidth"; | 41 const char kAttributeMinWidth[] = "minwidth"; |
| 42 const char kAttributeName[] = "name"; | 42 const char kAttributeName[] = "name"; |
| 43 const char kAttributePartition[] = "partition"; | 43 const char kAttributePartition[] = "partition"; |
| 44 const char kAttributeSrc[] = "src"; | 44 const char kAttributeSrc[] = "src"; |
| 45 | 45 |
| 46 // Parameters/properties on events. | 46 // Parameters/properties on events. |
| 47 const char kDefaultPromptText[] = "defaultPromptText"; | |
| 48 const char kId[] = "id"; | 47 const char kId[] = "id"; |
| 49 const char kInitialHeight[] = "initialHeight"; | 48 const char kInitialHeight[] = "initialHeight"; |
| 50 const char kInitialWidth[] = "initialWidth"; | 49 const char kInitialWidth[] = "initialWidth"; |
| 51 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; | 50 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; |
| 52 const char kMessageText[] = "messageText"; | |
| 53 const char kMessageType[] = "messageType"; | |
| 54 const char kName[] = "name"; | 51 const char kName[] = "name"; |
| 55 const char kPermission[] = "permission"; | 52 const char kPermission[] = "permission"; |
| 56 const char kPermissionTypeDialog[] = "dialog"; | 53 const char kPermissionTypeDialog[] = "dialog"; |
| 57 const char kPermissionTypeDownload[] = "download"; | 54 const char kPermissionTypeDownload[] = "download"; |
| 58 const char kPermissionTypeGeolocation[] = "geolocation"; | 55 const char kPermissionTypeGeolocation[] = "geolocation"; |
| 59 const char kPermissionTypeMedia[] = "media"; | 56 const char kPermissionTypeMedia[] = "media"; |
| 60 const char kPermissionTypeNewWindow[] = "newwindow"; | 57 const char kPermissionTypeNewWindow[] = "newwindow"; |
| 61 const char kPermissionTypePointerLock[] = "pointerLock"; | 58 const char kPermissionTypePointerLock[] = "pointerLock"; |
| 62 const char kPersistPrefix[] = "persist:"; | 59 const char kPersistPrefix[] = "persist:"; |
| 63 const char kProcessId[] = "processId"; | 60 const char kProcessId[] = "processId"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 77 "Cannot remove partition attribute after navigating."; | 74 "Cannot remove partition attribute after navigating."; |
| 78 | 75 |
| 79 // Other. | 76 // Other. |
| 80 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; | 77 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; |
| 81 const int kInstanceIDNone = 0; | 78 const int kInstanceIDNone = 0; |
| 82 const int kInvalidPermissionRequestID = 0; | 79 const int kInvalidPermissionRequestID = 0; |
| 83 | 80 |
| 84 } // namespace browser_plugin | 81 } // namespace browser_plugin |
| 85 | 82 |
| 86 } // namespace content | 83 } // namespace content |
| OLD | NEW |