| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 #if defined(OS_CHROMEOS) | 288 #if defined(OS_CHROMEOS) |
| 289 #if defined(OFFICIAL_BUILD) | 289 #if defined(OFFICIAL_BUILD) |
| 290 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; | 290 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; |
| 291 #else | 291 #else |
| 292 "https://support.google.com/chromeos/?p=help"; | 292 "https://support.google.com/chromeos/?p=help"; |
| 293 #endif // defined(OFFICIAL_BUILD | 293 #endif // defined(OFFICIAL_BUILD |
| 294 #else | 294 #else |
| 295 "https://support.google.com/chrome/?p=help"; | 295 "https://support.google.com/chrome/?p=help"; |
| 296 #endif | 296 #endif |
| 297 | 297 |
| 298 const char kChromeSyncLearnMoreURL[] = |
| 299 #if defined(OS_CHROMEOS) |
| 300 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=165139"; |
| 301 #else |
| 302 "http://support.google.com/chrome/bin/answer.py?hl=en&answer=165139"; |
| 303 #endif |
| 304 |
| 298 const char kSettingsSearchHelpURL[] = | 305 const char kSettingsSearchHelpURL[] = |
| 299 #if defined(OS_CHROMEOS) | 306 #if defined(OS_CHROMEOS) |
| 300 "https://support.google.com/chromeos/?p=settings_search_help"; | 307 "https://support.google.com/chromeos/?p=settings_search_help"; |
| 301 #else | 308 #else |
| 302 "https://support.google.com/chrome/?p=settings_search_help"; | 309 "https://support.google.com/chrome/?p=settings_search_help"; |
| 303 #endif | 310 #endif |
| 304 | 311 |
| 305 const char kAboutGoogleTranslateURL[] = | 312 const char kAboutGoogleTranslateURL[] = |
| 306 #if defined(OS_CHROMEOS) | 313 #if defined(OS_CHROMEOS) |
| 307 "https://support.google.com/chromeos/?p=ib_translation_bar"; | 314 "https://support.google.com/chromeos/?p=ib_translation_bar"; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 kChromeUIGpuCleanURL, | 431 kChromeUIGpuCleanURL, |
| 425 kChromeUIGpuCrashURL, | 432 kChromeUIGpuCrashURL, |
| 426 kChromeUIGpuHangURL, | 433 kChromeUIGpuHangURL, |
| 427 }; | 434 }; |
| 428 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); | 435 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); |
| 429 | 436 |
| 430 const char kExtensionScheme[] = "chrome-extension"; | 437 const char kExtensionScheme[] = "chrome-extension"; |
| 431 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 438 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
| 432 | 439 |
| 433 } // namespace chrome | 440 } // namespace chrome |
| OLD | NEW |