| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_BOOKMARK_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/bookmark_bar_model.h" | 8 #include "chrome/browser/bookmarks/bookmark_bar_model.h" |
| 9 #include "chrome/browser/bookmark_drag_data.h" | 9 #include "chrome/browser/bookmarks/bookmark_drag_data.h" |
| 10 #include "chrome/common/slide_animation.h" | 10 #include "chrome/common/slide_animation.h" |
| 11 #include "chrome/views/label.h" | 11 #include "chrome/views/label.h" |
| 12 #include "chrome/views/menu.h" | 12 #include "chrome/views/menu.h" |
| 13 #include "chrome/views/menu_button.h" | 13 #include "chrome/views/menu_button.h" |
| 14 #include "chrome/views/view.h" | 14 #include "chrome/views/view.h" |
| 15 #include "chrome/views/view_menu_delegate.h" | 15 #include "chrome/views/view_menu_delegate.h" |
| 16 | 16 |
| 17 class Browser; | 17 class Browser; |
| 18 class PageNavigator; | 18 class PageNavigator; |
| 19 class PrefService; | 19 class PrefService; |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 // If the bookmark bubble is showing, this is the visible ancestor of the URL. | 434 // If the bookmark bubble is showing, this is the visible ancestor of the URL. |
| 435 // The visible ancestor is either the other_bookmarked_button_, | 435 // The visible ancestor is either the other_bookmarked_button_, |
| 436 // overflow_button_ or a button on the bar. | 436 // overflow_button_ or a button on the bar. |
| 437 ChromeViews::BaseButton* throbbing_view_; | 437 ChromeViews::BaseButton* throbbing_view_; |
| 438 | 438 |
| 439 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); | 439 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); |
| 440 }; | 440 }; |
| 441 | 441 |
| 442 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BAR_VIEW_H_ | 442 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| 443 | 443 |
| OLD | NEW |