Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: content/renderer/browser_plugin/browser_plugin_constants.h

Issue 12189018: <webview>: Implement WebRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff from latest patch Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698