summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics/drive_metrics_provider_android.cc
blob: beb9e8c773f52ec62009f7fe63581d3953a6a271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/metrics/drive_metrics_provider.h"

// static
bool DriveMetricsProvider::HasSeekPenalty(const base::FilePath& path,
                                          bool* has_seek_penalty) {
  *has_seek_penalty = false;
  return true;
}