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

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

Issue 10836039: Chrome diagnostics: First cut at implementing chrome://diagnostics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nits from jhawkins@. 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 extern const char kChromeUITaskManagerURL[]; 66 extern const char kChromeUITaskManagerURL[];
67 extern const char kChromeUITermsURL[]; 67 extern const char kChromeUITermsURL[];
68 extern const char kChromeUIThumbnailURL[]; 68 extern const char kChromeUIThumbnailURL[];
69 extern const char kChromeUIUberURL[]; 69 extern const char kChromeUIUberURL[];
70 extern const char kChromeUIUberFrameURL[]; 70 extern const char kChromeUIUberFrameURL[];
71 extern const char kChromeUIVersionURL[]; 71 extern const char kChromeUIVersionURL[];
72 72
73 #if defined(OS_CHROMEOS) 73 #if defined(OS_CHROMEOS)
74 extern const char kChromeUIActivationMessage[]; 74 extern const char kChromeUIActivationMessage[];
75 extern const char kChromeUIChooseMobileNetworkURL[]; 75 extern const char kChromeUIChooseMobileNetworkURL[];
76 extern const char kChromeUIDiagnosticsURL[];
76 extern const char kChromeUIDiscardsURL[]; 77 extern const char kChromeUIDiscardsURL[];
77 extern const char kChromeUIIdleLogoutDialogURL[]; 78 extern const char kChromeUIIdleLogoutDialogURL[];
78 extern const char kChromeUIImageBurnerURL[]; 79 extern const char kChromeUIImageBurnerURL[];
79 extern const char kChromeUIKeyboardOverlayURL[]; 80 extern const char kChromeUIKeyboardOverlayURL[];
80 extern const char kChromeUILockScreenURL[]; 81 extern const char kChromeUILockScreenURL[];
81 extern const char kChromeUIMediaplayerURL[]; 82 extern const char kChromeUIMediaplayerURL[];
82 extern const char kChromeUIMobileSetupURL[]; 83 extern const char kChromeUIMobileSetupURL[];
83 extern const char kChromeUIOobeURL[]; 84 extern const char kChromeUIOobeURL[];
84 extern const char kChromeUIOSCreditsURL[]; 85 extern const char kChromeUIOSCreditsURL[];
85 extern const char kChromeUIProxySettingsURL[]; 86 extern const char kChromeUIProxySettingsURL[];
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 198
198 #if defined(OS_LINUX) || defined(OS_OPENBSD) 199 #if defined(OS_LINUX) || defined(OS_OPENBSD)
199 extern const char kChromeUILinuxProxyConfigHost[]; 200 extern const char kChromeUILinuxProxyConfigHost[];
200 extern const char kChromeUISandboxHost[]; 201 extern const char kChromeUISandboxHost[];
201 #endif 202 #endif
202 203
203 #if defined(OS_CHROMEOS) 204 #if defined(OS_CHROMEOS)
204 extern const char kChromeUIActivationMessageHost[]; 205 extern const char kChromeUIActivationMessageHost[];
205 extern const char kChromeUIChooseMobileNetworkHost[]; 206 extern const char kChromeUIChooseMobileNetworkHost[];
206 extern const char kChromeUICryptohomeHost[]; 207 extern const char kChromeUICryptohomeHost[];
208 extern const char kChromeUIDiagnosticsHost[];
207 extern const char kChromeUIDiscardsHost[]; 209 extern const char kChromeUIDiscardsHost[];
208 extern const char kChromeUIIdleLogoutDialogHost[]; 210 extern const char kChromeUIIdleLogoutDialogHost[];
209 extern const char kChromeUIImageBurnerHost[]; 211 extern const char kChromeUIImageBurnerHost[];
210 extern const char kChromeUIKeyboardOverlayHost[]; 212 extern const char kChromeUIKeyboardOverlayHost[];
211 extern const char kChromeUILockScreenHost[]; 213 extern const char kChromeUILockScreenHost[];
212 extern const char kChromeUILoginContainerHost[]; 214 extern const char kChromeUILoginContainerHost[];
213 extern const char kChromeUILoginHost[]; 215 extern const char kChromeUILoginHost[];
214 extern const char kChromeUIMediaplayerHost[]; 216 extern const char kChromeUIMediaplayerHost[];
215 extern const char kChromeUIMobileSetupHost[]; 217 extern const char kChromeUIMobileSetupHost[];
216 extern const char kChromeUINetworkHost[]; 218 extern const char kChromeUINetworkHost[];
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 #endif 395 #endif
394 396
395 #if defined(OS_CHROMEOS) 397 #if defined(OS_CHROMEOS)
396 // "Learn more" URL for the Cloud Print section under Options. 398 // "Learn more" URL for the Cloud Print section under Options.
397 extern const char kCloudPrintLearnMoreURL[]; 399 extern const char kCloudPrintLearnMoreURL[];
398 #endif 400 #endif
399 401
400 } // namespace chrome 402 } // namespace chrome
401 403
402 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 404 #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