Home | History | Annotate | Download | only in bookmarks
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_CONTROLLER_OBSERVER_H_
      6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_CONTROLLER_OBSERVER_H_
      7 
      8 class BookmarkMenuController;
      9 
     10 // The observer is notified prior to the menu being deleted.
     11 class BookmarkMenuControllerObserver {
     12  public:
     13   virtual void BookmarkMenuControllerDeleted(
     14       BookmarkMenuController* controller) = 0;
     15 
     16  protected:
     17   virtual ~BookmarkMenuControllerObserver() {}
     18 };
     19 
     20 #endif  // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_MENU_CONTROLLER_OBSERVER_H_
     21