Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
|
hartmanng
2017/01/13 15:40:22
s/2015/2017/
gonzalon
2017/01/13 20:24:40
Done.
| |
| 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_WEBAPKS_UI_WEBAPKS_UI_CONSTANTS_H_ | |
| 6 #define COMPONENTS_WEBAPKS_UI_WEBAPKS_UI_CONSTANTS_H_ | |
| 7 | |
| 8 namespace webapks_ui { | |
| 9 | |
| 10 // Resource paths. | |
| 11 // Must match the resource file names. | |
| 12 extern const char kAboutWebAPKsCSS[]; | |
| 13 extern const char kWebAPKsJS[]; | |
| 14 | |
| 15 // Message handlers. | |
| 16 // Must match the constants used in the resource files. | |
| 17 extern const char kRequestWebAPKsInfo[]; | |
| 18 extern const char kReturnWebAPKsInfo[]; | |
| 19 | |
| 20 // Strings. | |
| 21 // Must match the constants used in the resource files. | |
| 22 extern const char kTitle[]; | |
| 23 extern const char kHeader[]; | |
| 24 extern const char kPackageName[]; | |
| 25 extern const char kShellApkVersion[]; | |
| 26 extern const char kVersionCode[]; | |
| 27 | |
| 28 } // namespace webapks_ui | |
| 29 | |
| 30 #endif // COMPONENTS_WEBAPKS_UI_WEBAPKS_UI_CONSTANTS_H_ | |
| OLD | NEW |