| 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/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 #endif // defined(OFFICIAL_BUILD | 422 #endif // defined(OFFICIAL_BUILD |
| 423 #else | 423 #else |
| 424 "https://support.google.com/chrome/?p=help&ctx=settings"; | 424 "https://support.google.com/chrome/?p=help&ctx=settings"; |
| 425 #endif // defined(OS_CHROMEOS) | 425 #endif // defined(OS_CHROMEOS) |
| 426 | 426 |
| 427 #if defined(OS_CHROMEOS) | 427 #if defined(OS_CHROMEOS) |
| 428 const char kChromeAccessibilityHelpURL[] = | 428 const char kChromeAccessibilityHelpURL[] = |
| 429 "https://support.google.com/chromebook/?p=accessibility_menu"; | 429 "https://support.google.com/chromebook/?p=accessibility_menu"; |
| 430 const char kChromeAccessibilitySettingsURL[] = | 430 const char kChromeAccessibilitySettingsURL[] = |
| 431 "/chromevox/background/options.html"; | 431 "/chromevox/background/options.html"; |
| 432 const char kChromePaletteHelpURL[] = |
| 433 "https://support.google.com/chromebook?p=stylus_help"; |
| 432 #endif // defined(OS_CHROMEOS) | 434 #endif // defined(OS_CHROMEOS) |
| 433 | 435 |
| 434 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 436 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| 435 const char kChromeSyncLearnMoreURL[] = | 437 const char kChromeSyncLearnMoreURL[] = |
| 436 "https://support.google.com/chrome/answer/165139"; | 438 "https://support.google.com/chrome/answer/165139"; |
| 437 | 439 |
| 438 const char kChromeSyncMergeTroubleshootingURL[] = | 440 const char kChromeSyncMergeTroubleshootingURL[] = |
| 439 "https://support.google.com/chrome/answer/1181420#merge"; | 441 "https://support.google.com/chrome/answer/1181420#merge"; |
| 440 #endif // BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 442 #endif // BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| 441 | 443 |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 "https://support.google.com/chrome?p=bluetooth"; | 776 "https://support.google.com/chrome?p=bluetooth"; |
| 775 | 777 |
| 776 const char kChooserUsbOverviewURL[] = | 778 const char kChooserUsbOverviewURL[] = |
| 777 "https://support.google.com/chrome?p=webusb"; | 779 "https://support.google.com/chrome?p=webusb"; |
| 778 | 780 |
| 779 #if defined(OS_CHROMEOS) | 781 #if defined(OS_CHROMEOS) |
| 780 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 782 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 781 #endif | 783 #endif |
| 782 | 784 |
| 783 } // namespace chrome | 785 } // namespace chrome |
| OLD | NEW |