mock_backend_impl.cc 386 B

123456789101112
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "net/disk_cache/mock/mock_backend_impl.h"
  5. namespace disk_cache {
  6. BackendMock::BackendMock(net::CacheType cache_type) : Backend(cache_type) {}
  7. BackendMock::~BackendMock() = default;
  8. } // namespace disk_cache