Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: components/webapks_ui/webapks_ui_constants.h

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds an about:webapks page with information about all installed Web APKs on the device Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698