OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/guest_view/web_view/web_view_constants.h" | 5 #include "chrome/browser/guest_view/web_view/web_view_constants.h" |
6 | 6 |
7 namespace webview { | 7 namespace webview { |
8 | 8 |
9 // Events. | 9 // Events. |
10 const char kEventClose[] = "webview.onClose"; | 10 const char kEventClose[] = "webview.onClose"; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 const char kFindRectWidth[] = "width"; | 82 const char kFindRectWidth[] = "width"; |
83 const char kFindRectHeight[] = "height"; | 83 const char kFindRectHeight[] = "height"; |
84 const char kFindCanceled[] = "canceled"; | 84 const char kFindCanceled[] = "canceled"; |
85 | 85 |
86 // Initialization parameters. | 86 // Initialization parameters. |
87 const char kParameterUserAgentOverride[] = "userAgentOverride"; | 87 const char kParameterUserAgentOverride[] = "userAgentOverride"; |
88 | 88 |
89 // Miscellaneous. | 89 // Miscellaneous. |
90 const char kMenuItemCommandId[] = "commandId"; | 90 const char kMenuItemCommandId[] = "commandId"; |
91 const char kMenuItemLabel[] = "label"; | 91 const char kMenuItemLabel[] = "label"; |
| 92 const char kPersistPrefix[] = "persist:"; |
| 93 const char kStoragePartitionId[] = "storagePartitionId"; |
92 const unsigned int kMaxOutstandingPermissionRequests = 1024; | 94 const unsigned int kMaxOutstandingPermissionRequests = 1024; |
93 const int kInvalidPermissionRequestID = 0; | 95 const int kInvalidPermissionRequestID = 0; |
94 | 96 |
95 } // namespace webview | 97 } // namespace webview |
OLD | NEW |