// Copyright 2014 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_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ #define COMPONENTS_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_ #include "components/bookmarks/browser/bookmark_model_observer.h" namespace bookmarks { // Base class for a BookmarkModelObserver implementation. All mutations of the // model funnel into the method BookmarkModelChanged. class BaseBookmarkModelObserver : public BookmarkModelObserver { … }; } // namespace bookmarks #endif // COMPONENTS_BOOKMARKS_BROWSER_BASE_BOOKMARK_MODEL_OBSERVER_H_