// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "storage/browser/quota/quota_device_info_helper.h" #include "base/metrics/histogram_macros.h" namespace storage { QuotaDeviceInfoHelper::~QuotaDeviceInfoHelper() = default; int64_t QuotaDeviceInfoHelper::AmountOfTotalDiskSpace( const base::FilePath& path) const { … } uint64_t QuotaDeviceInfoHelper::AmountOfPhysicalMemory() const { … } } // namespace storage