| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 extern const char kChromeUIVersionHost[]; | 220 extern const char kChromeUIVersionHost[]; |
| 221 extern const char kChromeUIWorkersHost[]; | 221 extern const char kChromeUIWorkersHost[]; |
| 222 | 222 |
| 223 extern const char kChromeUIScreenshotPath[]; | 223 extern const char kChromeUIScreenshotPath[]; |
| 224 extern const char kChromeUIThemePath[]; | 224 extern const char kChromeUIThemePath[]; |
| 225 | 225 |
| 226 #if defined(OS_ANDROID) | 226 #if defined(OS_ANDROID) |
| 227 extern const char kChromeUIWelcomeHost[]; | 227 extern const char kChromeUIWelcomeHost[]; |
| 228 #endif | 228 #endif |
| 229 | 229 |
| 230 #if defined(OS_LINUX) || defined(OS_OPENBSD) | 230 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 231 extern const char kChromeUILinuxProxyConfigHost[]; | 231 extern const char kChromeUILinuxProxyConfigHost[]; |
| 232 extern const char kChromeUISandboxHost[]; | 232 extern const char kChromeUISandboxHost[]; |
| 233 #endif | 233 #endif |
| 234 | 234 |
| 235 #if defined(OS_CHROMEOS) | 235 #if defined(OS_CHROMEOS) |
| 236 extern const char kChromeUIActivationMessageHost[]; | 236 extern const char kChromeUIActivationMessageHost[]; |
| 237 extern const char kChromeUIAppLaunchHost[]; | 237 extern const char kChromeUIAppLaunchHost[]; |
| 238 extern const char kChromeUIBluetoothPairingHost[]; | 238 extern const char kChromeUIBluetoothPairingHost[]; |
| 239 extern const char kChromeUIChooseMobileNetworkHost[]; | 239 extern const char kChromeUIChooseMobileNetworkHost[]; |
| 240 extern const char kChromeUICryptohomeHost[]; | 240 extern const char kChromeUICryptohomeHost[]; |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 // Parameters that get appended to force SafeSearch. | 477 // Parameters that get appended to force SafeSearch. |
| 478 extern const char kSafeSearchSafeParameter[]; | 478 extern const char kSafeSearchSafeParameter[]; |
| 479 extern const char kSafeSearchSsuiParameter[]; | 479 extern const char kSafeSearchSsuiParameter[]; |
| 480 | 480 |
| 481 // The URL for the "Learn more" link in the media access infobar. | 481 // The URL for the "Learn more" link in the media access infobar. |
| 482 extern const char kMediaAccessLearnMoreUrl[]; | 482 extern const char kMediaAccessLearnMoreUrl[]; |
| 483 | 483 |
| 484 } // namespace chrome | 484 } // namespace chrome |
| 485 | 485 |
| 486 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 486 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |