diff options
author | dbeam <dbeam@chromium.org> | 2015-03-18 15:44:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-18 22:44:56 +0000 |
commit | f4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12 (patch) | |
tree | 9d406bdcd4ffb84bdcc1abc7e4ccbd6ee2ff769c /base/sys_info_android.cc | |
parent | 5b3b5620baf043e7c71f447007cf958c18be54b8 (diff) | |
download | chromium_src-f4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12.zip chromium_src-f4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12.tar.gz chromium_src-f4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12.tar.bz2 |
base: "implement" seek time detection for iOS/Android and add more stubs.
BUG=463209
R=rvargas@chromium.org
TBR=asvitkine@chromium.org
Review URL: https://codereview.chromium.org/1011433002
Cr-Commit-Position: refs/heads/master@{#321224}
Diffstat (limited to 'base/sys_info_android.cc')
-rw-r--r-- | base/sys_info_android.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/base/sys_info_android.cc b/base/sys_info_android.cc index 245097f..0f2abc5 100644 --- a/base/sys_info_android.cc +++ b/base/sys_info_android.cc @@ -155,6 +155,12 @@ int GetDalvikHeapGrowthLimitMB() { namespace base { +bool SysInfo::HasSeekPenalty(const FilePath& path, bool* has_seek_penalty) { + // Find a case where this is incorrect and dbeam@ will buy you a beer. + *has_seek_penalty = false; + return true; +} + std::string SysInfo::OperatingSystemName() { return "Android"; } |