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

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

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, single quotes in browsertest js Created 6 years, 7 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_tests.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 <string> 10 #include <string>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 extern const char kChromeUIImageBurnerURL[]; 106 extern const char kChromeUIImageBurnerURL[];
107 extern const char kChromeUIKeyboardOverlayURL[]; 107 extern const char kChromeUIKeyboardOverlayURL[];
108 extern const char kChromeUILockScreenURL[]; 108 extern const char kChromeUILockScreenURL[];
109 extern const char kChromeUIMediaplayerURL[]; 109 extern const char kChromeUIMediaplayerURL[];
110 extern const char kChromeUIMobileSetupURL[]; 110 extern const char kChromeUIMobileSetupURL[];
111 extern const char kChromeUINfcDebugURL[]; 111 extern const char kChromeUINfcDebugURL[];
112 extern const char kChromeUIOobeURL[]; 112 extern const char kChromeUIOobeURL[];
113 extern const char kChromeUIOSCreditsURL[]; 113 extern const char kChromeUIOSCreditsURL[];
114 extern const char kChromeUIProxySettingsURL[]; 114 extern const char kChromeUIProxySettingsURL[];
115 extern const char kChromeUIScreenlockIconURL[]; 115 extern const char kChromeUIScreenlockIconURL[];
116 extern const char kChromeUISetTimeURL[];
116 extern const char kChromeUISimUnlockURL[]; 117 extern const char kChromeUISimUnlockURL[];
117 extern const char kChromeUISlideshowURL[]; 118 extern const char kChromeUISlideshowURL[];
118 extern const char kChromeUISlowURL[]; 119 extern const char kChromeUISlowURL[];
119 extern const char kChromeUISystemInfoURL[]; 120 extern const char kChromeUISystemInfoURL[];
120 extern const char kChromeUITermsOemURL[]; 121 extern const char kChromeUITermsOemURL[];
121 extern const char kChromeUIUserImageURL[]; 122 extern const char kChromeUIUserImageURL[];
122 #endif 123 #endif
123 124
124 #if defined(USE_AURA) 125 #if defined(USE_AURA)
125 extern const char kChromeUIGestureConfigURL[]; 126 extern const char kChromeUIGestureConfigURL[];
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 extern const char kChromeUIMediaplayerHost[]; 267 extern const char kChromeUIMediaplayerHost[];
267 extern const char kChromeUIMobileSetupHost[]; 268 extern const char kChromeUIMobileSetupHost[];
268 extern const char kChromeUINetworkHost[]; 269 extern const char kChromeUINetworkHost[];
269 extern const char kChromeUINfcDebugHost[]; 270 extern const char kChromeUINfcDebugHost[];
270 extern const char kChromeUIOobeHost[]; 271 extern const char kChromeUIOobeHost[];
271 extern const char kChromeUIOSCreditsHost[]; 272 extern const char kChromeUIOSCreditsHost[];
272 extern const char kChromeUIPowerHost[]; 273 extern const char kChromeUIPowerHost[];
273 extern const char kChromeUIProxySettingsHost[]; 274 extern const char kChromeUIProxySettingsHost[];
274 extern const char kChromeUIRotateHost[]; 275 extern const char kChromeUIRotateHost[];
275 extern const char kChromeUIScreenlockIconHost[]; 276 extern const char kChromeUIScreenlockIconHost[];
277 extern const char kChromeUISetTimeHost[];
276 extern const char kChromeUISimUnlockHost[]; 278 extern const char kChromeUISimUnlockHost[];
277 extern const char kChromeUISlideshowHost[]; 279 extern const char kChromeUISlideshowHost[];
278 extern const char kChromeUISlowHost[]; 280 extern const char kChromeUISlowHost[];
279 extern const char kChromeUISlowTraceHost[]; 281 extern const char kChromeUISlowTraceHost[];
280 extern const char kChromeUIUserImageHost[]; 282 extern const char kChromeUIUserImageHost[];
281 283
282 extern const char kChromeUIMenu[]; 284 extern const char kChromeUIMenu[];
283 extern const char kChromeUINetworkMenu[]; 285 extern const char kChromeUINetworkMenu[];
284 extern const char kChromeUIWrenchMenu[]; 286 extern const char kChromeUIWrenchMenu[];
285 287
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 545
544 // The URL for the "Learn more" link the the Easy Unlock settings. 546 // The URL for the "Learn more" link the the Easy Unlock settings.
545 extern const char kEasyUnlockLearnMoreUrl[]; 547 extern const char kEasyUnlockLearnMoreUrl[];
546 548
547 // The URL to the device management page in the Easy Unlock settings. 549 // The URL to the device management page in the Easy Unlock settings.
548 extern const char kEasyUnlockManagementUrl[]; 550 extern const char kEasyUnlockManagementUrl[];
549 551
550 } // namespace chrome 552 } // namespace chrome
551 553
552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 554 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698