| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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_TOOLBAR_TOOLBAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 namespace autofill { | 33 namespace autofill { |
| 34 class SaveCardBubbleController; | 34 class SaveCardBubbleController; |
| 35 class SaveCardBubbleView; | 35 class SaveCardBubbleView; |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace bookmarks { | 38 namespace bookmarks { |
| 39 class BookmarkBubbleObserver; | 39 class BookmarkBubbleObserver; |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace extensions { | |
| 43 class Command; | |
| 44 class Extension; | |
| 45 } | |
| 46 | |
| 47 // The Browser Window's toolbar. | 42 // The Browser Window's toolbar. |
| 48 class ToolbarView : public views::AccessiblePaneView, | 43 class ToolbarView : public views::AccessiblePaneView, |
| 49 public views::MenuButtonListener, | 44 public views::MenuButtonListener, |
| 50 public ui::AcceleratorProvider, | 45 public ui::AcceleratorProvider, |
| 51 public LocationBarView::Delegate, | 46 public LocationBarView::Delegate, |
| 52 public content::NotificationObserver, | 47 public content::NotificationObserver, |
| 53 public CommandObserver, | 48 public CommandObserver, |
| 54 public views::ButtonListener, | 49 public views::ButtonListener, |
| 55 public AppMenuIconController::Delegate { | 50 public AppMenuIconController::Delegate { |
| 56 public: | 51 public: |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 | 216 |
| 222 // The display mode used when laying out the toolbar. | 217 // The display mode used when laying out the toolbar. |
| 223 const DisplayMode display_mode_; | 218 const DisplayMode display_mode_; |
| 224 | 219 |
| 225 content::NotificationRegistrar registrar_; | 220 content::NotificationRegistrar registrar_; |
| 226 | 221 |
| 227 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); | 222 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); |
| 228 }; | 223 }; |
| 229 | 224 |
| 230 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ | 225 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_VIEW_H_ |
| OLD | NEW |