| 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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 #if defined(OS_WIN) | 816 #if defined(OS_WIN) |
| 817 const char kWindowsXPVistaDeprecationURL[] = | 817 const char kWindowsXPVistaDeprecationURL[] = |
| 818 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; | 818 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; |
| 819 #endif | 819 #endif |
| 820 | 820 |
| 821 const char kChooserBluetoothOverviewURL[] = | 821 const char kChooserBluetoothOverviewURL[] = |
| 822 "https://support.google.com/chrome?p=bluetooth"; | 822 "https://support.google.com/chrome?p=bluetooth"; |
| 823 | 823 |
| 824 const char kBluetoothAdapterOffHelpURL[] = | 824 const char kBluetoothAdapterOffHelpURL[] = |
| 825 #if defined(OS_CHROMEOS) | 825 #if defined(OS_CHROMEOS) |
| 826 "chrome://settings/search#Bluetooth"; | 826 "chrome://settings/#Bluetooth"; |
| 827 #else | 827 #else |
| 828 "https://support.google.com/chrome?p=bluetooth"; | 828 "https://support.google.com/chrome?p=bluetooth"; |
| 829 #endif | 829 #endif |
| 830 | 830 |
| 831 const char kChooserUsbOverviewURL[] = | 831 const char kChooserUsbOverviewURL[] = |
| 832 "https://support.google.com/chrome?p=webusb"; | 832 "https://support.google.com/chrome?p=webusb"; |
| 833 | 833 |
| 834 #if defined(OS_CHROMEOS) | 834 #if defined(OS_CHROMEOS) |
| 835 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 835 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 836 #endif | 836 #endif |
| 837 | 837 |
| 838 } // namespace chrome | 838 } // namespace chrome |
| OLD | NEW |