Chromium Code Reviews| Index: chrome/browser/adview/adview_constants.h |
| diff --git a/chrome/browser/adview/adview_constants.h b/chrome/browser/adview/adview_constants.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ab5566555c6e40f5328816c19e5d3cecc7c0539c |
| --- /dev/null |
| +++ b/chrome/browser/adview/adview_constants.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 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 adview API. |
| + |
| +#ifndef CHROME_BROWSER_ADVIEW_ADVIEW_CONSTANTS_H_ |
| +#define CHROME_BROWSER_ADVIEW_ADVIEW_CONSTANTS_H_ |
| + |
| +namespace adview_constants { |
|
sky
2013/06/25 16:16:52
namespace is wrong here. Should be adview. See htt
Fady Samuel
2013/06/25 16:54:42
Done.
|
| + |
| +// Events. |
| +extern const char kEventLoadCommit[]; |
| + |
| +// Parameters/properties on events. |
| +extern const char kIsTopLevel[]; |
| +extern const char kUrl[]; |
| + |
| +// Attributes. |
| +extern const char kAttributeApi[]; |
| + |
| +} // namespace adview_constants |
| + |
| +#endif // CHROME_BROWSER_ADVIEW_ADVIEW_CONSTANTS_H_ |
| + |