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

Side by Side Diff: base/sys_info_android.cc

Issue 13374002: base: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « base/strings/utf_offset_string_conversions_unittest.cc ('k') | base/sys_info_chromeos.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/sys_info.h" 5 #include "base/sys_info.h"
6 6
7 #include <sys/system_properties.h> 7 #include <sys/system_properties.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string_piece.h"
11 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_piece.h"
12 12
13 namespace { 13 namespace {
14 14
15 // Default version of Android to fall back to when actual version numbers 15 // Default version of Android to fall back to when actual version numbers
16 // cannot be acquired. 16 // cannot be acquired.
17 // TODO(dfalcantara): Keep this reasonably up to date with the latest publicly 17 // TODO(dfalcantara): Keep this reasonably up to date with the latest publicly
18 // available version of Android. 18 // available version of Android.
19 static const int kDefaultAndroidMajorVersion = 4; 19 static const int kDefaultAndroidMajorVersion = 4;
20 static const int kDefaultAndroidMinorVersion = 0; 20 static const int kDefaultAndroidMinorVersion = 0;
21 static const int kDefaultAndroidBugfixVersion = 3; 21 static const int kDefaultAndroidBugfixVersion = 3;
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 return heap_size; 151 return heap_size;
152 } 152 }
153 153
154 int SysInfo::DalvikHeapGrowthLimitMB() { 154 int SysInfo::DalvikHeapGrowthLimitMB() {
155 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB(); 155 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB();
156 return heap_growth_limit; 156 return heap_growth_limit;
157 } 157 }
158 158
159 159
160 } // namespace base 160 } // namespace base
OLDNEW
« no previous file with comments | « base/strings/utf_offset_string_conversions_unittest.cc ('k') | base/sys_info_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698