| 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/android/sys_utils.h" |
| 10 #include "base/lazy_instance.h" |
| 9 #include "base/logging.h" | 11 #include "base/logging.h" |
| 10 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
| 11 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
| 12 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "base/sys_info_internal.h" |
| 13 | 16 |
| 14 namespace { | 17 namespace { |
| 15 | 18 |
| 16 // Default version of Android to fall back to when actual version numbers | 19 // Default version of Android to fall back to when actual version numbers |
| 17 // cannot be acquired. This is an obviously invalid version number. Code | 20 // cannot be acquired. This is an obviously invalid version number. Code |
| 18 // doing version comparison should treat it as so and fail all comparisons. | 21 // doing version comparison should treat it as so and fail all comparisons. |
| 19 const int kDefaultAndroidMajorVersion = 0; | 22 const int kDefaultAndroidMajorVersion = 0; |
| 20 const int kDefaultAndroidMinorVersion = 0; | 23 const int kDefaultAndroidMinorVersion = 0; |
| 21 const int kDefaultAndroidBugfixVersion = 0; | 24 const int kDefaultAndroidBugfixVersion = 0; |
| 22 | 25 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 int SysInfo::DalvikHeapSizeMB() { | 158 int SysInfo::DalvikHeapSizeMB() { |
| 156 static int heap_size = GetDalvikHeapSizeMB(); | 159 static int heap_size = GetDalvikHeapSizeMB(); |
| 157 return heap_size; | 160 return heap_size; |
| 158 } | 161 } |
| 159 | 162 |
| 160 int SysInfo::DalvikHeapGrowthLimitMB() { | 163 int SysInfo::DalvikHeapGrowthLimitMB() { |
| 161 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB(); | 164 static int heap_growth_limit = GetDalvikHeapGrowthLimitMB(); |
| 162 return heap_growth_limit; | 165 return heap_growth_limit; |
| 163 } | 166 } |
| 164 | 167 |
| 168 static base::LazyInstance< |
| 169 base::internal::LazySysInfoValue<bool, |
| 170 android::SysUtils::IsLowEndDeviceFromJni> >::Leaky |
| 171 g_lazy_low_end_device = LAZY_INSTANCE_INITIALIZER; |
| 172 |
| 173 bool SysInfo::IsLowEndDevice() { |
| 174 return g_lazy_low_end_device.Get().value(); |
| 175 } |
| 176 |
| 165 | 177 |
| 166 } // namespace base | 178 } // namespace base |
| OLD | NEW |