OLD | NEW |
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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 extern const char kChromeUIUberFrameHost[]; | 236 extern const char kChromeUIUberFrameHost[]; |
237 extern const char kChromeUIUberHost[]; | 237 extern const char kChromeUIUberHost[]; |
238 extern const char kChromeUIUserActionsHost[]; | 238 extern const char kChromeUIUserActionsHost[]; |
239 extern const char kChromeUIVersionHost[]; | 239 extern const char kChromeUIVersionHost[]; |
240 extern const char kChromeUIVoiceSearchHost[]; | 240 extern const char kChromeUIVoiceSearchHost[]; |
241 extern const char kChromeUIWorkersHost[]; | 241 extern const char kChromeUIWorkersHost[]; |
242 | 242 |
243 extern const char kChromeUIScreenshotPath[]; | 243 extern const char kChromeUIScreenshotPath[]; |
244 extern const char kChromeUIThemePath[]; | 244 extern const char kChromeUIThemePath[]; |
245 | 245 |
246 #if defined(ENABLE_FULL_PRINTING) | 246 #if defined(ENABLE_PRINT_PREVIEW) |
247 extern const char kChromeUIPrintHost[]; | 247 extern const char kChromeUIPrintHost[]; |
248 #endif // ENABLE_FULL_PRINTING | 248 #endif // ENABLE_PRINT_PREVIEW |
249 | 249 |
250 #if defined(OS_ANDROID) | 250 #if defined(OS_ANDROID) |
251 extern const char kChromeUIWelcomeHost[]; | 251 extern const char kChromeUIWelcomeHost[]; |
252 #endif | 252 #endif |
253 | 253 |
254 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 254 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
255 extern const char kChromeUILinuxProxyConfigHost[]; | 255 extern const char kChromeUILinuxProxyConfigHost[]; |
256 extern const char kChromeUISandboxHost[]; | 256 extern const char kChromeUISandboxHost[]; |
257 #endif | 257 #endif |
258 | 258 |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 // The URL for the 32-bit Mac deprecation help center article | 545 // The URL for the 32-bit Mac deprecation help center article |
546 extern const char kMac32BitDeprecationURL[]; | 546 extern const char kMac32BitDeprecationURL[]; |
547 #endif | 547 #endif |
548 | 548 |
549 // The URL for the "Learn more" link the the Easy Unlock settings. | 549 // The URL for the "Learn more" link the the Easy Unlock settings. |
550 extern const char kEasyUnlockLearnMoreUrl[]; | 550 extern const char kEasyUnlockLearnMoreUrl[]; |
551 | 551 |
552 } // namespace chrome | 552 } // namespace chrome |
553 | 553 |
554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |