From f4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12 Mon Sep 17 00:00:00 2001 From: dbeam Date: Wed, 18 Mar 2015 15:44:14 -0700 Subject: 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} --- base/sys_info_ios.mm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'base/sys_info_ios.mm') diff --git a/base/sys_info_ios.mm b/base/sys_info_ios.mm index 49d618c..324bef6 100644 --- a/base/sys_info_ios.mm +++ b/base/sys_info_ios.mm @@ -16,6 +16,12 @@ 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; +} + // static std::string SysInfo::OperatingSystemName() { static dispatch_once_t get_system_name_once; -- cgit v1.1