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

Side by Side Diff: chrome/common/url_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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 extern const char kChromeUIWelcomeWin10URL[]; 94 extern const char kChromeUIWelcomeWin10URL[];
95 95
96 #if defined(OS_ANDROID) 96 #if defined(OS_ANDROID)
97 extern const char kChromeUIContextualSearchPromoURL[]; 97 extern const char kChromeUIContextualSearchPromoURL[];
98 extern const char kChromeUIJavaCrashURL[]; 98 extern const char kChromeUIJavaCrashURL[];
99 extern const char kChromeUINativeScheme[]; 99 extern const char kChromeUINativeScheme[];
100 extern const char kChromeUINativeNewTabURL[]; 100 extern const char kChromeUINativeNewTabURL[];
101 extern const char kChromeUINativeBookmarksURL[]; 101 extern const char kChromeUINativeBookmarksURL[];
102 extern const char kChromeUINativePhysicalWebDiagnosticsURL[]; 102 extern const char kChromeUINativePhysicalWebDiagnosticsURL[];
103 extern const char kChromeUINativeRecentTabsURL[]; 103 extern const char kChromeUINativeRecentTabsURL[];
104 extern const char kChromeUIWebApksURL[];
104 #endif // defined(OS_ANDROID) 105 #endif // defined(OS_ANDROID)
105 106
106 #if defined(OS_CHROMEOS) 107 #if defined(OS_CHROMEOS)
107 extern const char kChromeUIBluetoothPairingURL[]; 108 extern const char kChromeUIBluetoothPairingURL[];
108 extern const char kChromeUICertificateManagerDialogURL[]; 109 extern const char kChromeUICertificateManagerDialogURL[];
109 extern const char kChromeUIChooseMobileNetworkURL[]; 110 extern const char kChromeUIChooseMobileNetworkURL[];
110 extern const char kChromeUIDeviceEmulatorURL[]; 111 extern const char kChromeUIDeviceEmulatorURL[];
111 extern const char kChromeUIFirstRunURL[]; 112 extern const char kChromeUIFirstRunURL[];
112 extern const char kChromeUIKeyboardOverlayURL[]; 113 extern const char kChromeUIKeyboardOverlayURL[];
113 extern const char kChromeUIMobileSetupURL[]; 114 extern const char kChromeUIMobileSetupURL[];
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 extern const char kChromeUILinuxProxyConfigHost[]; 261 extern const char kChromeUILinuxProxyConfigHost[];
261 extern const char kChromeUISandboxHost[]; 262 extern const char kChromeUISandboxHost[];
262 #endif 263 #endif
263 264
264 #if defined(OS_ANDROID) 265 #if defined(OS_ANDROID)
265 extern const char kChromeUIContextualSearchPromoHost[]; 266 extern const char kChromeUIContextualSearchPromoHost[];
266 extern const char kChromeUIOfflineInternalsURL[]; 267 extern const char kChromeUIOfflineInternalsURL[];
267 extern const char kChromeUIPhysicalWebDiagnosticsHost[]; 268 extern const char kChromeUIPhysicalWebDiagnosticsHost[];
268 extern const char kChromeUIPopularSitesInternalsHost[]; 269 extern const char kChromeUIPopularSitesInternalsHost[];
269 extern const char kChromeUISnippetsInternalsHost[]; 270 extern const char kChromeUISnippetsInternalsHost[];
271 extern const char kChromeUIWebApksHost[];
270 #endif 272 #endif
271 273
272 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR) 274 #if defined(ENABLE_VR_SHELL) || defined(ENABLE_WEBVR)
273 extern const char kChromeUIVrShellUIHost[]; 275 extern const char kChromeUIVrShellUIHost[];
274 #endif 276 #endif
275 277
276 #if defined(OS_CHROMEOS) 278 #if defined(OS_CHROMEOS)
277 extern const char kChromeUIActivationMessageHost[]; 279 extern const char kChromeUIActivationMessageHost[];
278 extern const char kChromeUIAppLaunchHost[]; 280 extern const char kChromeUIAppLaunchHost[];
279 extern const char kChromeUIBluetoothPairingHost[]; 281 extern const char kChromeUIBluetoothPairingHost[];
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 extern const char kChooserUsbOverviewURL[]; 615 extern const char kChooserUsbOverviewURL[];
614 616
615 #if defined(OS_CHROMEOS) 617 #if defined(OS_CHROMEOS)
616 // The URL for EOL notification 618 // The URL for EOL notification
617 extern const char kEolNotificationURL[]; 619 extern const char kEolNotificationURL[];
618 #endif 620 #endif
619 621
620 } // namespace chrome 622 } // namespace chrome
621 623
622 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 624 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698