Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(754)

Side by Side Diff: chrome/browser/obsolete_system/obsolete_system_linux.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698