| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | 5 #ifndef COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ |
| 6 #define COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | 6 #define COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace physical_web_ui { | 8 namespace physical_web_ui { |
| 9 | 9 |
| 10 // Resource paths. | 10 // Resource paths. |
| 11 // Must match the resource file names. | 11 // Must match the resource file names. |
| 12 extern const char kPhysicalWebJS[]; | 12 extern const char kPhysicalWebJS[]; |
| 13 extern const char kPhysicalWebCSS[]; | 13 extern const char kPhysicalWebCSS[]; |
| 14 extern const char kPhysicalWebLinkIcon[]; |
| 14 | 15 |
| 15 // Message handlers. | 16 // Message handlers. |
| 16 // Must match the constants used in the resource files. | 17 // Must match the constants used in the resource files. |
| 17 extern const char kPhysicalWebPageLoaded[]; | 18 extern const char kPhysicalWebPageLoaded[]; |
| 18 extern const char kPhysicalWebItemClicked[]; | 19 extern const char kPhysicalWebItemClicked[]; |
| 19 | 20 |
| 20 // Strings. | 21 // Strings. |
| 21 // Must match the constants used in the resource files. | 22 // Must match the constants used in the resource files. |
| 22 extern const char kTitle[]; | 23 extern const char kTitle[]; |
| 23 extern const char kEmptyMessage[]; | 24 extern const char kEmptyMessage[]; |
| 24 extern const char kPageInfoDescription[]; | 25 extern const char kPageInfoDescription[]; |
| 25 extern const char kPageInfoIcon[]; | 26 extern const char kPageInfoIcon[]; |
| 26 extern const char kPageInfoTitle[]; | 27 extern const char kPageInfoTitle[]; |
| 27 extern const char kResolvedUrl[]; | 28 extern const char kResolvedUrl[]; |
| 28 extern const char kIndex[]; | 29 extern const char kIndex[]; |
| 29 extern const char kPushNearbyUrls[]; | 30 extern const char kPushNearbyUrls[]; |
| 30 extern const char kMetadata[]; | 31 extern const char kMetadata[]; |
| 31 | 32 |
| 32 } // namespace physical_web_ui | 33 } // namespace physical_web_ui |
| 33 | 34 |
| 34 #endif // COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | 35 #endif // COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ |
| OLD | NEW |