| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 "https://support.google.com/chrome/?p=help&ctx=settings"; | 420 "https://support.google.com/chrome/?p=help&ctx=settings"; |
| 421 #endif // defined(OS_CHROMEOS) | 421 #endif // defined(OS_CHROMEOS) |
| 422 | 422 |
| 423 #if defined(OS_CHROMEOS) | 423 #if defined(OS_CHROMEOS) |
| 424 const char kChromeAccessibilityHelpURL[] = | 424 const char kChromeAccessibilityHelpURL[] = |
| 425 "https://support.google.com/chromebook/?p=accessibility_menu"; | 425 "https://support.google.com/chromebook/?p=accessibility_menu"; |
| 426 const char kChromeAccessibilitySettingsURL[] = | 426 const char kChromeAccessibilitySettingsURL[] = |
| 427 "/chromevox/background/options.html"; | 427 "/chromevox/background/options.html"; |
| 428 #endif // defined(OS_CHROMEOS) | 428 #endif // defined(OS_CHROMEOS) |
| 429 | 429 |
| 430 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 430 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| 431 const char kChromeSyncLearnMoreURL[] = | 431 const char kChromeSyncLearnMoreURL[] = |
| 432 "https://support.google.com/chrome/answer/165139"; | 432 "https://support.google.com/chrome/answer/165139"; |
| 433 | 433 |
| 434 const char kChromeSyncMergeTroubleshootingURL[] = | 434 const char kChromeSyncMergeTroubleshootingURL[] = |
| 435 "https://support.google.com/chrome/answer/1181420#merge"; | 435 "https://support.google.com/chrome/answer/1181420#merge"; |
| 436 #endif // defined(ENABLE_ONE_CLICK_SIGNIN) | 436 #endif // BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| 437 | 437 |
| 438 #if defined(OS_MACOSX) | 438 #if defined(OS_MACOSX) |
| 439 const char kChromeEnterpriseSignInLearnMoreURL[] = | 439 const char kChromeEnterpriseSignInLearnMoreURL[] = |
| 440 "https://support.google.com/chromebook/answer/1331549"; | 440 "https://support.google.com/chromebook/answer/1331549"; |
| 441 #endif | 441 #endif |
| 442 | 442 |
| 443 const char kResetProfileSettingsLearnMoreURL[] = | 443 const char kResetProfileSettingsLearnMoreURL[] = |
| 444 "https://support.google.com/chrome/?p=ui_reset_settings"; | 444 "https://support.google.com/chrome/?p=ui_reset_settings"; |
| 445 | 445 |
| 446 const char kAutomaticSettingsResetLearnMoreURL[] = | 446 const char kAutomaticSettingsResetLearnMoreURL[] = |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 | 763 |
| 764 #if defined(OS_WIN) | 764 #if defined(OS_WIN) |
| 765 const char kWindowsXPVistaDeprecationURL[] = | 765 const char kWindowsXPVistaDeprecationURL[] = |
| 766 "https://support.google.com/chrome/answer/95346"; | 766 "https://support.google.com/chrome/answer/95346"; |
| 767 #endif | 767 #endif |
| 768 | 768 |
| 769 const char kChooserBluetoothOverviewURL[] = | 769 const char kChooserBluetoothOverviewURL[] = |
| 770 "https://support.google.com/chrome?p=bluetooth"; | 770 "https://support.google.com/chrome?p=bluetooth"; |
| 771 | 771 |
| 772 } // namespace chrome | 772 } // namespace chrome |
| OLD | NEW |