// Copyright 2020 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_READING_LIST_CORE_READING_LIST_TEST_UTILS_H_ #define COMPONENTS_READING_LIST_CORE_READING_LIST_TEST_UTILS_H_ #include "base/memory/raw_ptr.h" #include "base/run_loop.h" #include "components/reading_list/core/reading_list_model_observer.h" class GURL; class ReadingListModel; // ReadingListLoadObserver is used to observe the ReadingListModel passed in the // constructor for the ReadingListModelLoaded event. class ReadingListLoadObserver : public ReadingListModelObserver { … }; #endif // COMPONENTS_READING_LIST_CORE_READING_LIST_TEST_UTILS_H_