Chromium Code Reviews| 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..63dcdd862b9ac09bb534772624775e77b5ce6e30 |
| --- /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. |
| + |
| +// Consts used for the WebView API. |
|
lazyboy
2013/06/19 19:22:16
nit: Constants
Fady Samuel
2013/06/19 19:42:11
Done.
|
| + |
| +#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_ |
| + |