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

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

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Makes the listWebApks method receive a callback on the Java side 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 2017 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_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