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

Side by Side Diff: chrome/common/url_constants.h

Issue 10828140: Upstream about:welcome page for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 extern const char kChromeUISuggestionsInternalsURL[]; 64 extern const char kChromeUISuggestionsInternalsURL[];
65 extern const char kChromeUISSLClientCertificateSelectorURL[]; 65 extern const char kChromeUISSLClientCertificateSelectorURL[];
66 extern const char kChromeUISyncPromoURL[]; 66 extern const char kChromeUISyncPromoURL[];
67 extern const char kChromeUITaskManagerURL[]; 67 extern const char kChromeUITaskManagerURL[];
68 extern const char kChromeUITermsURL[]; 68 extern const char kChromeUITermsURL[];
69 extern const char kChromeUIThumbnailURL[]; 69 extern const char kChromeUIThumbnailURL[];
70 extern const char kChromeUIUberURL[]; 70 extern const char kChromeUIUberURL[];
71 extern const char kChromeUIUberFrameURL[]; 71 extern const char kChromeUIUberFrameURL[];
72 extern const char kChromeUIVersionURL[]; 72 extern const char kChromeUIVersionURL[];
73 73
74 #if defined(OS_ANDROID)
75 extern const char kChromeUIWelcomeURL[];
76 #endif
77
74 #if defined(OS_CHROMEOS) 78 #if defined(OS_CHROMEOS)
75 extern const char kChromeUIActivationMessage[]; 79 extern const char kChromeUIActivationMessage[];
76 extern const char kChromeUIChooseMobileNetworkURL[]; 80 extern const char kChromeUIChooseMobileNetworkURL[];
77 extern const char kChromeUIDiagnosticsURL[]; 81 extern const char kChromeUIDiagnosticsURL[];
78 extern const char kChromeUIDiscardsURL[]; 82 extern const char kChromeUIDiscardsURL[];
79 extern const char kChromeUIIdleLogoutDialogURL[]; 83 extern const char kChromeUIIdleLogoutDialogURL[];
80 extern const char kChromeUIImageBurnerURL[]; 84 extern const char kChromeUIImageBurnerURL[];
81 extern const char kChromeUIKeyboardOverlayURL[]; 85 extern const char kChromeUIKeyboardOverlayURL[];
82 extern const char kChromeUILockScreenURL[]; 86 extern const char kChromeUILockScreenURL[];
83 extern const char kChromeUIMediaplayerURL[]; 87 extern const char kChromeUIMediaplayerURL[];
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 extern const char kChromeUITouchIconHost[]; 195 extern const char kChromeUITouchIconHost[];
192 extern const char kChromeUITracingHost[]; 196 extern const char kChromeUITracingHost[];
193 extern const char kChromeUIUberFrameHost[]; 197 extern const char kChromeUIUberFrameHost[];
194 extern const char kChromeUIUberHost[]; 198 extern const char kChromeUIUberHost[];
195 extern const char kChromeUIVersionHost[]; 199 extern const char kChromeUIVersionHost[];
196 extern const char kChromeUIWorkersHost[]; 200 extern const char kChromeUIWorkersHost[];
197 201
198 extern const char kChromeUIScreenshotPath[]; 202 extern const char kChromeUIScreenshotPath[];
199 extern const char kChromeUIThemePath[]; 203 extern const char kChromeUIThemePath[];
200 204
205 #if defined(OS_ANDROID)
206 extern const char kChromeUIWelcomeHost[];
207 #endif
208
201 #if defined(OS_LINUX) || defined(OS_OPENBSD) 209 #if defined(OS_LINUX) || defined(OS_OPENBSD)
202 extern const char kChromeUILinuxProxyConfigHost[]; 210 extern const char kChromeUILinuxProxyConfigHost[];
203 extern const char kChromeUISandboxHost[]; 211 extern const char kChromeUISandboxHost[];
204 #endif 212 #endif
205 213
206 #if defined(OS_CHROMEOS) 214 #if defined(OS_CHROMEOS)
207 extern const char kChromeUIActivationMessageHost[]; 215 extern const char kChromeUIActivationMessageHost[];
208 extern const char kChromeUIChooseMobileNetworkHost[]; 216 extern const char kChromeUIChooseMobileNetworkHost[];
209 extern const char kChromeUICryptohomeHost[]; 217 extern const char kChromeUICryptohomeHost[];
210 extern const char kChromeUIDiagnosticsHost[]; 218 extern const char kChromeUIDiagnosticsHost[];
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 388
381 // Canonical schemes you can use as input to GURL.SchemeIs(). 389 // Canonical schemes you can use as input to GURL.SchemeIs().
382 extern const char kExtensionScheme[]; 390 extern const char kExtensionScheme[];
383 391
384 // Canonical schemes you can use as input to GURL.SchemeIs(). 392 // Canonical schemes you can use as input to GURL.SchemeIs().
385 extern const char kExtensionResourceScheme[]; 393 extern const char kExtensionResourceScheme[];
386 394
387 #if defined(OS_CHROMEOS) 395 #if defined(OS_CHROMEOS)
388 extern const char kDriveScheme[]; 396 extern const char kDriveScheme[];
389 #endif 397 #endif
398
390 #if defined(OS_ANDROID) 399 #if defined(OS_ANDROID)
391 extern const char kContentScheme[]; 400 extern const char kContentScheme[];
392 // Special Android file paths. 401 // Special Android file paths.
393 extern const char kAndroidAssetPath[]; 402 extern const char kAndroidAssetPath[];
394 extern const char kAndroidResourcePath[]; 403 extern const char kAndroidResourcePath[];
395 #endif 404 #endif
396 405
397 #if defined(OS_CHROMEOS) 406 #if defined(OS_CHROMEOS)
398 // "Learn more" URL for the Cloud Print section under Options. 407 // "Learn more" URL for the Cloud Print section under Options.
399 extern const char kCloudPrintLearnMoreURL[]; 408 extern const char kCloudPrintLearnMoreURL[];
400 #endif 409 #endif
401 410
402 } // namespace chrome 411 } // namespace chrome
403 412
404 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 413 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698