| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BOOKMARK_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARK_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "chrome/browser/bookmarks/bookmark_node_data.h" | 11 #include "chrome/browser/bookmarks/bookmark_node_data.h" |
| 12 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 12 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 13 #include "chrome/browser/sync/profile_sync_service.h" | 13 #include "chrome/browser/sync/profile_sync_service.h" |
| 14 #include "chrome/browser/views/bookmark_bar_instructions_view.h" | 14 #include "chrome/browser/ui/views/bookmark_bar_instructions_view.h" |
| 15 #include "chrome/browser/views/bookmark_menu_controller_views.h" | 15 #include "chrome/browser/ui/views/bookmark_menu_controller_views.h" |
| 16 #include "chrome/browser/views/detachable_toolbar_view.h" | 16 #include "chrome/browser/ui/views/detachable_toolbar_view.h" |
| 17 #include "chrome/common/notification_registrar.h" | 17 #include "chrome/common/notification_registrar.h" |
| 18 #include "ui/base/animation/animation_delegate.h" | 18 #include "ui/base/animation/animation_delegate.h" |
| 19 #include "views/controls/button/button.h" | 19 #include "views/controls/button/button.h" |
| 20 #include "views/controls/menu/view_menu_delegate.h" | 20 #include "views/controls/menu/view_menu_delegate.h" |
| 21 | 21 |
| 22 class Browser; | 22 class Browser; |
| 23 class PageNavigator; | 23 class PageNavigator; |
| 24 class PrefService; | 24 class PrefService; |
| 25 | 25 |
| 26 namespace ui { | 26 namespace ui { |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 // overflow_button_ or a button on the bar. | 501 // overflow_button_ or a button on the bar. |
| 502 views::CustomButton* throbbing_view_; | 502 views::CustomButton* throbbing_view_; |
| 503 | 503 |
| 504 // Background for extension toolstrips. | 504 // Background for extension toolstrips. |
| 505 SkBitmap toolstrip_background_; | 505 SkBitmap toolstrip_background_; |
| 506 | 506 |
| 507 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); | 507 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); |
| 508 }; | 508 }; |
| 509 | 509 |
| 510 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARK_BAR_VIEW_H_ | 510 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARK_BAR_VIEW_H_ |
| OLD | NEW |