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

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

Issue 107103004: Implement the spring charger replacement UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Point iFrame to production site. Created 7 years 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/common/pref_names.cc ('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 <string> 10 #include <string>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 extern const char kChromeUIVersionURL[]; 87 extern const char kChromeUIVersionURL[];
88 88
89 #if defined(OS_ANDROID) 89 #if defined(OS_ANDROID)
90 extern const char kChromeUINativeNewTabURL[]; 90 extern const char kChromeUINativeNewTabURL[];
91 extern const char kChromeUIWelcomeURL[]; 91 extern const char kChromeUIWelcomeURL[];
92 #endif 92 #endif
93 93
94 #if defined(OS_CHROMEOS) 94 #if defined(OS_CHROMEOS)
95 extern const char kChromeUIActivationMessage[]; 95 extern const char kChromeUIActivationMessage[];
96 extern const char kChromeUIBluetoothPairingURL[]; 96 extern const char kChromeUIBluetoothPairingURL[];
97 extern const char kChromeUIChargerReplacementURL[];
97 extern const char kChromeUIChooseMobileNetworkURL[]; 98 extern const char kChromeUIChooseMobileNetworkURL[];
98 extern const char kChromeUIDiagnosticsURL[]; 99 extern const char kChromeUIDiagnosticsURL[];
99 extern const char kChromeUIDiscardsURL[]; 100 extern const char kChromeUIDiscardsURL[];
100 extern const char kChromeUIFirstRunURL[]; 101 extern const char kChromeUIFirstRunURL[];
101 extern const char kChromeUIIdleLogoutDialogURL[]; 102 extern const char kChromeUIIdleLogoutDialogURL[];
102 extern const char kChromeUIImageBurnerURL[]; 103 extern const char kChromeUIImageBurnerURL[];
103 extern const char kChromeUIKeyboardOverlayURL[]; 104 extern const char kChromeUIKeyboardOverlayURL[];
104 extern const char kChromeUILockScreenURL[]; 105 extern const char kChromeUILockScreenURL[];
105 extern const char kChromeUIMediaplayerURL[]; 106 extern const char kChromeUIMediaplayerURL[];
106 extern const char kChromeUIMobileSetupURL[]; 107 extern const char kChromeUIMobileSetupURL[];
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 234
234 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) 235 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
235 extern const char kChromeUILinuxProxyConfigHost[]; 236 extern const char kChromeUILinuxProxyConfigHost[];
236 extern const char kChromeUISandboxHost[]; 237 extern const char kChromeUISandboxHost[];
237 #endif 238 #endif
238 239
239 #if defined(OS_CHROMEOS) 240 #if defined(OS_CHROMEOS)
240 extern const char kChromeUIActivationMessageHost[]; 241 extern const char kChromeUIActivationMessageHost[];
241 extern const char kChromeUIAppLaunchHost[]; 242 extern const char kChromeUIAppLaunchHost[];
242 extern const char kChromeUIBluetoothPairingHost[]; 243 extern const char kChromeUIBluetoothPairingHost[];
244 extern const char kChromeUIChargerReplacementHost[];
243 extern const char kChromeUIChooseMobileNetworkHost[]; 245 extern const char kChromeUIChooseMobileNetworkHost[];
244 extern const char kChromeUICryptohomeHost[]; 246 extern const char kChromeUICryptohomeHost[];
245 extern const char kChromeUIDiagnosticsHost[]; 247 extern const char kChromeUIDiagnosticsHost[];
246 extern const char kChromeUIDiscardsHost[]; 248 extern const char kChromeUIDiscardsHost[];
247 extern const char kChromeUIFirstRunHost[]; 249 extern const char kChromeUIFirstRunHost[];
248 extern const char kChromeUIIdleLogoutDialogHost[]; 250 extern const char kChromeUIIdleLogoutDialogHost[];
249 extern const char kChromeUIImageBurnerHost[]; 251 extern const char kChromeUIImageBurnerHost[];
250 extern const char kChromeUIKeyboardOverlayHost[]; 252 extern const char kChromeUIKeyboardOverlayHost[];
251 extern const char kChromeUILockScreenHost[]; 253 extern const char kChromeUILockScreenHost[];
252 extern const char kChromeUILoginContainerHost[]; 254 extern const char kChromeUILoginContainerHost[];
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 // Parameters that get appended to force SafeSearch. 500 // Parameters that get appended to force SafeSearch.
499 extern const char kSafeSearchSafeParameter[]; 501 extern const char kSafeSearchSafeParameter[];
500 extern const char kSafeSearchSsuiParameter[]; 502 extern const char kSafeSearchSsuiParameter[];
501 503
502 // The URL for the "Learn more" link in the media access infobar. 504 // The URL for the "Learn more" link in the media access infobar.
503 extern const char kMediaAccessLearnMoreUrl[]; 505 extern const char kMediaAccessLearnMoreUrl[];
504 506
505 } // namespace chrome 507 } // namespace chrome
506 508
507 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 509 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698