| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/browser/obsolete_system/obsolete_system.h" | 5 #include "chrome/browser/obsolete_system/obsolete_system.h" |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 9 #include "build/build_config.h" |
| 10 |
| 7 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_CHROMEOS) | 11 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_CHROMEOS) |
| 8 #include <gnu/libc-version.h> | 12 #include <gnu/libc-version.h> |
| 9 | 13 |
| 10 #include "base/sys_info.h" | 14 #include "base/sys_info.h" |
| 11 #include "base/version.h" | 15 #include "base/version.h" |
| 12 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
| 13 #include "chrome/grit/chromium_strings.h" | 17 #include "chrome/grit/chromium_strings.h" |
| 14 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 15 #endif | 19 #endif |
| 16 | 20 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 } | 68 } |
| 65 | 69 |
| 66 // static | 70 // static |
| 67 const char* ObsoleteSystem::GetLinkURL() { | 71 const char* ObsoleteSystem::GetLinkURL() { |
| 68 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_CHROMEOS) | 72 #if defined(GOOGLE_CHROME_BUILD) && !defined(OS_CHROMEOS) |
| 69 return chrome::kLinuxWheezyPreciseDeprecationURL; | 73 return chrome::kLinuxWheezyPreciseDeprecationURL; |
| 70 #else | 74 #else |
| 71 return ""; | 75 return ""; |
| 72 #endif | 76 #endif |
| 73 } | 77 } |
| OLD | NEW |