| 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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 // https://crbug.com/555044 | 755 // https://crbug.com/555044 |
| 756 const char kMac10_678_DeprecationURL[] = | 756 const char kMac10_678_DeprecationURL[] = |
| 757 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; | 757 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; |
| 758 #endif | 758 #endif |
| 759 | 759 |
| 760 #if defined(OS_WIN) | 760 #if defined(OS_WIN) |
| 761 const char kWindowsXPVistaDeprecationURL[] = | 761 const char kWindowsXPVistaDeprecationURL[] = |
| 762 "https://support.google.com/chrome/answer/95346"; | 762 "https://support.google.com/chrome/answer/95346"; |
| 763 #endif | 763 #endif |
| 764 | 764 |
| 765 const char kChooserBluetoothOverviewURL[] = |
| 766 "https://support.google.com/chrome?p=bluetooth"; |
| 767 |
| 765 } // namespace chrome | 768 } // namespace chrome |
| OLD | NEW |