summaryrefslogtreecommitdiffstats
path: root/base/sys_info_android.cc
diff options
context:
space:
mode:
authordbeam <dbeam@chromium.org>2015-04-02 10:24:47 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-02 17:25:21 +0000
commit005649e4ef576270314678ca7c2aab55e557ee35 (patch)
treed88c1ecc111fe971b7ab2e482062539cfbf029cc /base/sys_info_android.cc
parent58e913aa2a031aab0d082d3380c49e1b5881eba4 (diff)
downloadchromium_src-005649e4ef576270314678ca7c2aab55e557ee35.zip
chromium_src-005649e4ef576270314678ca7c2aab55e557ee35.tar.gz
chromium_src-005649e4ef576270314678ca7c2aab55e557ee35.tar.bz2
Move HasSeekPenalty() out of base::SysInfo and base/.
It's only called from one place, so move it there: - chrome/browser/metrics/drive_metrics_provider.cc R=rvargas@chromium.org,asvitkine@chromium.org BUG=463209 Review URL: https://codereview.chromium.org/1051663002 Cr-Commit-Position: refs/heads/master@{#323526}
Diffstat (limited to 'base/sys_info_android.cc')
-rw-r--r--base/sys_info_android.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/base/sys_info_android.cc b/base/sys_info_android.cc
index 0f2abc5..245097f 100644
--- a/base/sys_info_android.cc
+++ b/base/sys_info_android.cc
@@ -155,12 +155,6 @@ 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";
}