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 "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 const char kChromeUIVersionHost[] = "version"; | 213 const char kChromeUIVersionHost[] = "version"; |
214 const char kChromeUIWorkersHost[] = "workers"; | 214 const char kChromeUIWorkersHost[] = "workers"; |
215 | 215 |
216 const char kChromeUIScreenshotPath[] = "screenshots"; | 216 const char kChromeUIScreenshotPath[] = "screenshots"; |
217 const char kChromeUIThemePath[] = "theme"; | 217 const char kChromeUIThemePath[] = "theme"; |
218 | 218 |
219 #if defined(OS_ANDROID) | 219 #if defined(OS_ANDROID) |
220 const char kChromeUIWelcomeHost[] = "welcome"; | 220 const char kChromeUIWelcomeHost[] = "welcome"; |
221 #endif | 221 #endif |
222 | 222 |
223 #if defined(OS_LINUX) || defined(OS_OPENBSD) | 223 #if defined(OS_LINUX) || defined(OS_BSD) |
224 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; | 224 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; |
225 const char kChromeUISandboxHost[] = "sandbox"; | 225 const char kChromeUISandboxHost[] = "sandbox"; |
226 #endif | 226 #endif |
227 | 227 |
228 #if defined(OS_CHROMEOS) | 228 #if defined(OS_CHROMEOS) |
229 const char kChromeUIActivationMessageHost[] = "activationmessage"; | 229 const char kChromeUIActivationMessageHost[] = "activationmessage"; |
230 const char kChromeUIAppLaunchHost[] = "app-launch"; | 230 const char kChromeUIAppLaunchHost[] = "app-launch"; |
231 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; | 231 const char kChromeUIBluetoothPairingHost[] = "bluetooth-pairing"; |
232 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; | 232 const char kChromeUIChooseMobileNetworkHost[] = "choose-mobile-network"; |
233 const char kChromeUICryptohomeHost[] = "cryptohome"; | 233 const char kChromeUICryptohomeHost[] = "cryptohome"; |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 524 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
525 | 525 |
526 // Google SafeSearch query parameters. | 526 // Google SafeSearch query parameters. |
527 const char kSafeSearchSafeParameter[] = "safe=active"; | 527 const char kSafeSearchSafeParameter[] = "safe=active"; |
528 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 528 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
529 | 529 |
530 const char kMediaAccessLearnMoreUrl[] = | 530 const char kMediaAccessLearnMoreUrl[] = |
531 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 531 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
532 | 532 |
533 } // namespace chrome | 533 } // namespace chrome |
OLD | NEW |