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