// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_BROWSING_DATA_CONTENT_MOCK_LOCAL_STORAGE_HELPER_H_ #define COMPONENTS_BROWSING_DATA_CONTENT_MOCK_LOCAL_STORAGE_HELPER_H_ #include <list> #include "base/functional/callback.h" #include "components/browsing_data/content/local_storage_helper.h" #include "third_party/blink/public/common/storage_key/storage_key.h" namespace content { class StoragePartition; } // namespace content namespace browsing_data { // Mock for browsing_data::LocalStorageHelper. // Use AddLocalStorageSamples() or add directly to response_ list, then // call Notify(). class MockLocalStorageHelper : public browsing_data::LocalStorageHelper { … }; } // namespace browsing_data #endif // COMPONENTS_BROWSING_DATA_CONTENT_MOCK_LOCAL_STORAGE_HELPER_H_