OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 virtual bool IsFullscreen() const OVERRIDE; | 110 virtual bool IsFullscreen() const OVERRIDE; |
111 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; | 111 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; |
112 virtual LocationBar* GetLocationBar() const OVERRIDE; | 112 virtual LocationBar* GetLocationBar() const OVERRIDE; |
113 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 113 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
114 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 114 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
115 virtual void UpdateToolbar(content::WebContents* contents, | 115 virtual void UpdateToolbar(content::WebContents* contents, |
116 bool should_restore_state) OVERRIDE; | 116 bool should_restore_state) OVERRIDE; |
117 virtual void FocusToolbar() OVERRIDE; | 117 virtual void FocusToolbar() OVERRIDE; |
118 virtual void FocusAppMenu() OVERRIDE; | 118 virtual void FocusAppMenu() OVERRIDE; |
119 virtual void FocusBookmarksToolbar() OVERRIDE; | 119 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 120 virtual void FocusInfobars() OVERRIDE; |
120 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 121 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
121 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 122 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
122 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 123 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
123 virtual bool IsTabStripEditable() const OVERRIDE; | 124 virtual bool IsTabStripEditable() const OVERRIDE; |
124 virtual bool IsToolbarVisible() const OVERRIDE; | 125 virtual bool IsToolbarVisible() const OVERRIDE; |
125 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 126 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
126 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 127 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
127 Profile* profile) OVERRIDE; | 128 Profile* profile) OVERRIDE; |
128 virtual void ToggleBookmarkBar() OVERRIDE; | 129 virtual void ToggleBookmarkBar() OVERRIDE; |
129 virtual void ShowUpdateChromeDialog() OVERRIDE; | 130 virtual void ShowUpdateChromeDialog() OVERRIDE; |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 574 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
574 | 575 |
575 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 576 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
576 | 577 |
577 content::NotificationRegistrar registrar_; | 578 content::NotificationRegistrar registrar_; |
578 | 579 |
579 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 580 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
580 }; | 581 }; |
581 | 582 |
582 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 583 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |