| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/gtest_prod_util.h" | |
| 13 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 14 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 15 #include "base/prefs/pref_change_registrar.h" | 14 #include "base/prefs/pref_change_registrar.h" |
| 16 #include "chrome/browser/bookmarks/bookmark_stats.h" | 15 #include "chrome/browser/bookmarks/bookmark_stats.h" |
| 17 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 16 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
| 18 #include "chrome/browser/ui/bookmarks/bookmark_bar_instructions_delegate.h" | 17 #include "chrome/browser/ui/bookmarks/bookmark_bar_instructions_delegate.h" |
| 19 #include "chrome/browser/ui/bookmarks/bookmark_bubble_observer.h" | 18 #include "chrome/browser/ui/bookmarks/bookmark_bubble_observer.h" |
| 20 #include "chrome/browser/ui/views/bookmarks/bookmark_menu_controller_observer.h" | 19 #include "chrome/browser/ui/views/bookmarks/bookmark_menu_controller_observer.h" |
| 21 #include "components/bookmarks/browser/bookmark_model_observer.h" | 20 #include "components/bookmarks/browser/bookmark_model_observer.h" |
| 22 #include "components/bookmarks/browser/bookmark_node_data.h" | 21 #include "components/bookmarks/browser/bookmark_node_data.h" |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 | 459 |
| 461 base::ObserverList<BookmarkBarViewObserver> observers_; | 460 base::ObserverList<BookmarkBarViewObserver> observers_; |
| 462 | 461 |
| 463 // Factory used to delay showing of the drop menu. | 462 // Factory used to delay showing of the drop menu. |
| 464 base::WeakPtrFactory<BookmarkBarView> show_folder_method_factory_; | 463 base::WeakPtrFactory<BookmarkBarView> show_folder_method_factory_; |
| 465 | 464 |
| 466 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); | 465 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); |
| 467 }; | 466 }; |
| 468 | 467 |
| 469 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 468 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
| OLD | NEW |