// Copyright 2016 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_MODEL_OBSERVER_H_ #define COMPONENTS_READING_LIST_CORE_READING_LIST_MODEL_OBSERVER_H_ #include "components/reading_list/core/reading_list_entry.h" class GURL; class ReadingListModel; // Observer for the Reading List model. In the observer methods care should be // taken to not modify the model. class ReadingListModelObserver { … }; #endif // COMPONENTS_READING_LIST_CORE_READING_LIST_MODEL_OBSERVER_H_