| 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_TOOLBAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 // Overridden from AccessiblePaneView | 85 // Overridden from AccessiblePaneView |
| 86 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; | 86 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; |
| 87 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 87 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
| 88 | 88 |
| 89 // Overridden from views::MenuButtonListener: | 89 // Overridden from views::MenuButtonListener: |
| 90 virtual void OnMenuButtonClicked(views::View* source, | 90 virtual void OnMenuButtonClicked(views::View* source, |
| 91 const gfx::Point& point) OVERRIDE; | 91 const gfx::Point& point) OVERRIDE; |
| 92 | 92 |
| 93 // Overridden from LocationBarView::Delegate: | 93 // Overridden from LocationBarView::Delegate: |
| 94 virtual TabContentsWrapper* GetTabContentsWrapper() const OVERRIDE; | 94 virtual TabContents* GetTabContents() const OVERRIDE; |
| 95 virtual InstantController* GetInstant() OVERRIDE; | 95 virtual InstantController* GetInstant() OVERRIDE; |
| 96 virtual views::Widget* CreateViewsBubble( | 96 virtual views::Widget* CreateViewsBubble( |
| 97 views::BubbleDelegateView* bubble_delegate) OVERRIDE; | 97 views::BubbleDelegateView* bubble_delegate) OVERRIDE; |
| 98 virtual PageActionImageView* CreatePageActionImageView( | 98 virtual PageActionImageView* CreatePageActionImageView( |
| 99 LocationBarView* owner, ExtensionAction* action) OVERRIDE; | 99 LocationBarView* owner, ExtensionAction* action) OVERRIDE; |
| 100 virtual ContentSettingBubbleModelDelegate* | 100 virtual ContentSettingBubbleModelDelegate* |
| 101 GetContentSettingBubbleModelDelegate() OVERRIDE; | 101 GetContentSettingBubbleModelDelegate() OVERRIDE; |
| 102 virtual void ShowPageInfo(content::WebContents* web_contents, | 102 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 103 const GURL& url, | 103 const GURL& url, |
| 104 const content::SSLStatus& ssl, | 104 const content::SSLStatus& ssl, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 // A list of listeners to call when the menu opens. | 215 // A list of listeners to call when the menu opens. |
| 216 ObserverList<views::MenuListener> menu_listeners_; | 216 ObserverList<views::MenuListener> menu_listeners_; |
| 217 | 217 |
| 218 content::NotificationRegistrar registrar_; | 218 content::NotificationRegistrar registrar_; |
| 219 | 219 |
| 220 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); | 220 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ | 223 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ |
| OLD | NEW |