blob: 47a065a35eb1edcd0d7200f17fc0ee4faa03e914 [file] [log] [blame]
// Copyright 2017 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/mock_blob_registry_delegate.h"
namespace storage {
bool MockBlobRegistryDelegate::CanReadFile(const base::FilePath& file) {
return can_read_file_result;
}
bool MockBlobRegistryDelegate::CanAccessDataForOrigin(
const url::Origin& origin) {
return can_access_data_for_origin;
}
} // namespace storage