summaryrefslogtreecommitdiffstats
path: root/base/sys_info_ios.mm
diff options
context:
space:
mode:
authordbeam <dbeam@chromium.org>2015-03-18 15:44:14 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-18 22:44:56 +0000
commitf4a0d6b3eb666ef634d719e4d5ddc0dee3bb0d12 (patch)
tree9d406bdcd4ffb84bdcc1abc7e4ccbd6ee2ff769c /base/sys_info_ios.mm
parent5b3b5620baf043e7c71f447007cf958c18be54b8 (diff)
downloadchromium_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_ios.mm')
-rw-r--r--base/sys_info_ios.mm6
1 files changed, 6 insertions, 0 deletions
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;