| Index: chrome/browser/extensions/api/webview/webview_api_constants.h
|
| diff --git a/chrome/browser/extensions/api/webview/webview_api_constants.h b/chrome/browser/extensions/api/webview/webview_api_constants.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5c94a9179cac5a5108d4364dedfbc7f1733a0e85
|
| --- /dev/null
|
| +++ b/chrome/browser/extensions/api/webview/webview_api_constants.h
|
| @@ -0,0 +1,22 @@
|
| +// 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.
|
| +
|
| +// Constants used for the WebView API.
|
| +
|
| +#ifndef CHROME_BROWSER_EXTENSIONS_API_WEBVIEW_WEBVIEW_API_CONSTANTS_H_
|
| +#define CHROME_BROWSER_EXTENSIONS_API_WEBVIEW_WEBVIEW_API_CONSTANTS_H_
|
| +
|
| +namespace webview_api_constants {
|
| +
|
| +// Events.
|
| +extern const char kEventLoadCommit[];
|
| +
|
| +// Parameters/properties on events.
|
| +extern const char kIsTopLevel[];
|
| +extern const char kUrl[];
|
| +
|
| +} // namespace webview_api_constants
|
| +
|
| +#endif // CHROME_BROWSER_EXTENSIONS_API_WEBVIEW_WEBVIEW_API_CONSTANTS_H_
|
| +
|
|
|