OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 { |
11 | 11 |
12 // Method bindings. | 12 // Method bindings. |
13 extern const char kMethodBack[]; | 13 extern const char kMethodBack[]; |
14 extern const char kMethodCanGoBack[]; | 14 extern const char kMethodCanGoBack[]; |
15 extern const char kMethodCanGoForward[]; | 15 extern const char kMethodCanGoForward[]; |
16 extern const char kMethodForward[]; | 16 extern const char kMethodForward[]; |
| 17 extern const char kMethodGetInstanceId[]; |
17 extern const char kMethodGetProcessId[]; | 18 extern const char kMethodGetProcessId[]; |
18 extern const char kMethodGetRouteId[]; | 19 extern const char kMethodGetRouteId[]; |
19 extern const char kMethodGo[]; | 20 extern const char kMethodGo[]; |
20 extern const char kMethodReload[]; | 21 extern const char kMethodReload[]; |
21 extern const char kMethodStop[]; | 22 extern const char kMethodStop[]; |
22 extern const char kMethodTerminate[]; | 23 extern const char kMethodTerminate[]; |
23 | 24 |
24 // Internal method bindings. | 25 // Internal method bindings. |
25 extern const char kMethodInternalAttachWindowTo[]; | 26 extern const char kMethodInternalAttachWindowTo[]; |
26 extern const char kMethodInternalPersistObject[]; | 27 extern const char kMethodInternalPersistObject[]; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 94 |
94 // Other. | 95 // Other. |
95 extern const char kBrowserPluginGuestManagerKeyName[]; | 96 extern const char kBrowserPluginGuestManagerKeyName[]; |
96 extern const int kInstanceIDNone; | 97 extern const int kInstanceIDNone; |
97 | 98 |
98 } // namespace browser_plugin | 99 } // namespace browser_plugin |
99 | 100 |
100 } // namespace content | 101 } // namespace content |
101 | 102 |
102 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 103 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
OLD | NEW |