OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | |
6 #define COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | |
7 | |
8 namespace physical_web_ui { | |
9 | |
10 // Resource paths. | |
11 // Must match the resource file names. | |
12 extern const char kPhysicalWebJS[]; | |
13 extern const char kPhysicalWebCSS[]; | |
14 | |
15 // Message handlers. | |
16 // Must match the constants used in the resource files. | |
17 extern const char kRequestNearbyURLs[]; | |
18 | |
19 // Strings. | |
20 // Must match the constants used in the resource files. | |
21 extern const char kTitle[]; | |
22 extern const char kPageInfo[]; | |
23 extern const char kPageInfoDescription[]; | |
24 extern const char kPageInfoIcon[]; | |
25 extern const char kPageInfoTitle[]; | |
26 extern const char kResolvedUrl[]; | |
27 extern const char kScannedUrl[]; | |
28 extern const char kReturnNearbyURLs[]; | |
Jackie Quinn
2016/08/30 22:37:24
Nit: Is there a reason why URL is all caps here (a
mattreynolds
2016/08/30 23:33:23
Done.
| |
29 extern const char kMetadata[]; | |
30 | |
31 } // namespace physical_web_ui | |
32 | |
33 #endif // COMPONENTS_PHYSICAL_WEB_WEBUI_PHYSICAL_WEB_UI_CONSTANTS_H_ | |
OLD | NEW |