blob: 1130e1459c2d6d6d204db4cc9d8868a589ad2fe7 [file] [log] [blame]
// Copyright 2018 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 "storage/browser/test/fake_progress_client.h"
namespace storage {
void FakeProgressClient::OnProgress(uint64_t delta) {
total_size += delta;
call_count++;
}
} // namespace storage