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_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 6 #define CONTENT_RENDERER_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 // Attributes. | 25 // Attributes. |
25 extern const char kAttributeAutoSize[]; | 26 extern const char kAttributeAutoSize[]; |
26 extern const char kAttributeContentWindow[]; | 27 extern const char kAttributeContentWindow[]; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 extern const char kErrorCannotRemovePartition[]; | 63 extern const char kErrorCannotRemovePartition[]; |
63 | 64 |
64 // Other. | 65 // Other. |
65 extern const int kInstanceIDNone; | 66 extern const int kInstanceIDNone; |
66 | 67 |
67 } // namespace browser_plugin | 68 } // namespace browser_plugin |
68 | 69 |
69 } // namespace content | 70 } // namespace content |
70 | 71 |
71 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ | 72 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_CONSTANTS_H_ |
OLD | NEW |