| 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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 const char kChromeUIPrintHost[] = "print"; | 258 const char kChromeUIPrintHost[] = "print"; |
| 259 #endif // ENABLE_PRINT_PREVIEW | 259 #endif // ENABLE_PRINT_PREVIEW |
| 260 | 260 |
| 261 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 261 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 262 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; | 262 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; |
| 263 const char kChromeUISandboxHost[] = "sandbox"; | 263 const char kChromeUISandboxHost[] = "sandbox"; |
| 264 #endif | 264 #endif |
| 265 | 265 |
| 266 #if defined(OS_ANDROID) | 266 #if defined(OS_ANDROID) |
| 267 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; | 267 const char kChromeUIContextualSearchPromoHost[] = "contextual-search-promo"; |
| 268 const char kChromeUIPopularSitesInternalsHost[] = "popular-sites-internals"; |
| 268 #endif | 269 #endif |
| 269 | 270 |
| 270 #if defined(OS_CHROMEOS) | 271 #if defined(OS_CHROMEOS) |
| 271 const char kChromeUIActivationMessageHost[] = "activationmessage"; | 272 const char kChromeUIActivationMessageHost[] = "activationmessage"; |
| 272 const char kChromeUIAppLaunchHost[] = "app-launch"; | 273 const char kChromeUIAppLaunchHost[] = "app-launch"; |
| 273 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; | 274 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; |
| 274 const char kChromeUICertificateManagerHost[] = "certificate-manager"; | 275 const char kChromeUICertificateManagerHost[] = "certificate-manager"; |
| 275 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; | 276 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; |
| 276 const char kChromeUICryptohomeHost[] = "cryptohome"; | 277 const char kChromeUICryptohomeHost[] = "cryptohome"; |
| 277 const char kChromeUIDeviceEmulatorHost[] = "device-emulator"; | 278 const char kChromeUIDeviceEmulatorHost[] = "device-emulator"; |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 744 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 744 #else | 745 #else |
| 745 ""; | 746 ""; |
| 746 #endif | 747 #endif |
| 747 #endif | 748 #endif |
| 748 | 749 |
| 749 const char kEasyUnlockLearnMoreUrl[] = | 750 const char kEasyUnlockLearnMoreUrl[] = |
| 750 "https://support.google.com/chromebook/?p=smart_lock"; | 751 "https://support.google.com/chromebook/?p=smart_lock"; |
| 751 | 752 |
| 752 } // namespace chrome | 753 } // namespace chrome |
| OLD | NEW |