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 "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/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
11 #include "base/strings/string_piece.h" | 11 #include "base/strings/string_piece.h" |
12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
16 // Default version of Android to fall back to when actual version numbers | 16 // Default version of Android to fall back to when actual version numbers |
17 // cannot be acquired. | 17 // cannot be acquired. |
18 // TODO(dfalcantara): Keep this reasonably up to date with the latest publicly | 18 // TODO(dfalcantara): Keep this reasonably up to date with the latest publicly |
19 // available version of Android. | 19 // available version of Android. |
20 static const int kDefaultAndroidMajorVersion = 4; | 20 const int kDefaultAndroidMajorVersion = 4; |
21 static const int kDefaultAndroidMinorVersion = 0; | 21 const int kDefaultAndroidMinorVersion = 3; |
jar (doing other things)
2013/07/27 18:18:01
Why isn't this stuff pulled from the OS?
This see
joth
2013/07/27 19:23:39
The clue is in "kDefault..." (and, in the comment
jar (doing other things)
2013/07/28 19:19:02
That is mostly a great answer... but...
Is it rea
jar (doing other things)
2013/07/29 19:03:27
IMO, sending up the old answer will seemingly allo
| |
22 static const int kDefaultAndroidBugfixVersion = 3; | 22 const int kDefaultAndroidBugfixVersion = 0; |
23 | 23 |
24 // Parse out the OS version numbers from the system properties. | 24 // Parse out the OS version numbers from the system properties. |
25 void ParseOSVersionNumbers(const char* os_version_str, | 25 void ParseOSVersionNumbers(const char* os_version_str, |
26 int32 *major_version, | 26 int32 *major_version, |
27 int32 *minor_version, | 27 int32 *minor_version, |
28 int32 *bugfix_version) { | 28 int32 *bugfix_version) { |
29 if (os_version_str[0]) { | 29 if (os_version_str[0]) { |
30 // Try to parse out the version numbers from the string. | 30 // Try to parse out the version numbers from the string. |
31 int num_read = sscanf(os_version_str, "%d.%d.%d", major_version, | 31 int num_read = sscanf(os_version_str, "%d.%d.%d", major_version, |
32 minor_version, bugfix_version); | 32 minor_version, bugfix_version); |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
158 return heap_size; | 158 return heap_size; |
159 } | 159 } |
160 | 160 |
161 int SysInfo::DalvikHeapGrowthLimitMB() { | 161 int SysInfo::DalvikHeapGrowthLimitMB() { |
162 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB(); | 162 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB(); |
163 return heap_growth_limit; | 163 return heap_growth_limit; |
164 } | 164 } |
165 | 165 |
166 | 166 |
167 } // namespace base | 167 } // namespace base |
OLD | NEW |