| Index: chrome/renderer/browser_plugin/chrome_webview_constants.h
|
| diff --git a/chrome/renderer/browser_plugin/chrome_webview_constants.h b/chrome/renderer/browser_plugin/chrome_webview_constants.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..34bdae2aa48723d0bc8401e431ec791d30cea743
|
| --- /dev/null
|
| +++ b/chrome/renderer/browser_plugin/chrome_webview_constants.h
|
| @@ -0,0 +1,23 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_RENDERER_BROWSER_PLUGIN_CHROME_WEBVIEW_CONSTANTS_H_
|
| +#define CHROME_RENDERER_BROWSER_PLUGIN_CHROME_WEBVIEW_CONSTANTS_H_
|
| +
|
| +namespace chrome {
|
| +
|
| +namespace webview {
|
| +
|
| +// Method bindings.
|
| +extern const char kMethodBack[];
|
| +extern const char kMethodForward[];
|
| +extern const char kMethodGo[];
|
| +extern const char kMethodReload[];
|
| +extern const char kMethodStop[];
|
| +
|
| +} // namespace webview
|
| +
|
| +} // namespace chrome
|
| +
|
| +#endif // CHROME_RENDERER_BROWSER_PLUGIN_CHROME_WEBVIEW_CONSTANTS_H_
|
|
|