| 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 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 // Overridden from AccessiblePaneView | 91 // Overridden from AccessiblePaneView |
| 92 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; | 92 virtual bool SetPaneFocus(View* initial_focus) OVERRIDE; |
| 93 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 93 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
| 94 | 94 |
| 95 // Overridden from views::MenuButtonListener: | 95 // Overridden from views::MenuButtonListener: |
| 96 virtual void OnMenuButtonClicked(views::View* source, | 96 virtual void OnMenuButtonClicked(views::View* source, |
| 97 const gfx::Point& point) OVERRIDE; | 97 const gfx::Point& point) OVERRIDE; |
| 98 | 98 |
| 99 // Overridden from LocationBarView::Delegate: | 99 // Overridden from LocationBarView::Delegate: |
| 100 virtual TabContents* GetTabContents() const OVERRIDE; | 100 virtual content::WebContents* GetWebContents() const OVERRIDE; |
| 101 virtual InstantController* GetInstant() OVERRIDE; | 101 virtual InstantController* GetInstant() OVERRIDE; |
| 102 virtual views::Widget* CreateViewsBubble( | 102 virtual views::Widget* CreateViewsBubble( |
| 103 views::BubbleDelegateView* bubble_delegate) OVERRIDE; | 103 views::BubbleDelegateView* bubble_delegate) OVERRIDE; |
| 104 virtual PageActionImageView* CreatePageActionImageView( | 104 virtual PageActionImageView* CreatePageActionImageView( |
| 105 LocationBarView* owner, ExtensionAction* action) OVERRIDE; | 105 LocationBarView* owner, ExtensionAction* action) OVERRIDE; |
| 106 virtual ContentSettingBubbleModelDelegate* | 106 virtual ContentSettingBubbleModelDelegate* |
| 107 GetContentSettingBubbleModelDelegate() OVERRIDE; | 107 GetContentSettingBubbleModelDelegate() OVERRIDE; |
| 108 virtual void ShowPageInfo(content::WebContents* web_contents, | 108 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 109 const GURL& url, | 109 const GURL& url, |
| 110 const content::SSLStatus& ssl, | 110 const content::SSLStatus& ssl, |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 235 |
| 236 // A list of listeners to call when the menu opens. | 236 // A list of listeners to call when the menu opens. |
| 237 ObserverList<views::MenuListener> menu_listeners_; | 237 ObserverList<views::MenuListener> menu_listeners_; |
| 238 | 238 |
| 239 content::NotificationRegistrar registrar_; | 239 content::NotificationRegistrar registrar_; |
| 240 | 240 |
| 241 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); | 241 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarView); |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ | 244 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_VIEW_H_ |
| OLD | NEW |