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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 #elif defined(OS_ANDROID) | 525 #elif defined(OS_ANDROID) |
526 // Keep in sync with chrome/android/java/strings/android_chrome_strings.grd | 526 // Keep in sync with chrome/android/java/strings/android_chrome_strings.grd |
527 "https://support.google.com/chrome/?p=mobile_protected_content"; | 527 "https://support.google.com/chrome/?p=mobile_protected_content"; |
528 #endif | 528 #endif |
529 | 529 |
530 const char kChromiumProjectURL[] = "https://www.chromium.org/"; | 530 const char kChromiumProjectURL[] = "https://www.chromium.org/"; |
531 | 531 |
532 const char kLearnMoreReportingURL[] = | 532 const char kLearnMoreReportingURL[] = |
533 "https://support.google.com/chrome/?p=ui_usagestat"; | 533 "https://support.google.com/chrome/?p=ui_usagestat"; |
534 | 534 |
535 #if defined(ENABLE_PLUGIN_INSTALLATION) | 535 #if BUILDFLAG(ENABLE_PLUGIN_INSTALLATION) |
536 const char kOutdatedPluginLearnMoreURL[] = | 536 const char kOutdatedPluginLearnMoreURL[] = |
537 "https://support.google.com/chrome/?p=ib_outdated_plugin"; | 537 "https://support.google.com/chrome/?p=ib_outdated_plugin"; |
538 #endif | 538 #endif |
539 | 539 |
540 const char kBlockedPluginLearnMoreURL[] = | 540 const char kBlockedPluginLearnMoreURL[] = |
541 "https://support.google.com/chrome/?p=ib_blocked_plugin"; | 541 "https://support.google.com/chrome/?p=ib_blocked_plugin"; |
542 | 542 |
543 const char kHotwordLearnMoreURL[] = | 543 const char kHotwordLearnMoreURL[] = |
544 "https://support.google.com/chrome/?p=ui_hotword_search"; | 544 "https://support.google.com/chrome/?p=ui_hotword_search"; |
545 | 545 |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 #endif | 791 #endif |
792 | 792 |
793 const char kChooserUsbOverviewURL[] = | 793 const char kChooserUsbOverviewURL[] = |
794 "https://support.google.com/chrome?p=webusb"; | 794 "https://support.google.com/chrome?p=webusb"; |
795 | 795 |
796 #if defined(OS_CHROMEOS) | 796 #if defined(OS_CHROMEOS) |
797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 797 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
798 #endif | 798 #endif |
799 | 799 |
800 } // namespace chrome | 800 } // namespace chrome |
OLD | NEW |