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_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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 virtual bool IsFullscreen() const OVERRIDE; | 111 virtual bool IsFullscreen() const OVERRIDE; |
112 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; | 112 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; |
113 virtual LocationBar* GetLocationBar() const OVERRIDE; | 113 virtual LocationBar* GetLocationBar() const OVERRIDE; |
114 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 114 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
115 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 115 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
116 virtual void UpdateToolbar(TabContentsWrapper* contents, | 116 virtual void UpdateToolbar(TabContentsWrapper* contents, |
117 bool should_restore_state) OVERRIDE; | 117 bool should_restore_state) OVERRIDE; |
118 virtual void FocusToolbar() OVERRIDE; | 118 virtual void FocusToolbar() OVERRIDE; |
119 virtual void FocusAppMenu() OVERRIDE; | 119 virtual void FocusAppMenu() OVERRIDE; |
120 virtual void FocusBookmarksToolbar() OVERRIDE; | 120 virtual void FocusBookmarksToolbar() OVERRIDE; |
121 virtual void FocusChromeOSStatus() OVERRIDE; | |
122 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 121 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
123 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 122 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
124 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 123 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
125 virtual bool IsTabStripEditable() const OVERRIDE; | 124 virtual bool IsTabStripEditable() const OVERRIDE; |
126 virtual bool IsToolbarVisible() const OVERRIDE; | 125 virtual bool IsToolbarVisible() const OVERRIDE; |
127 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 126 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
128 virtual bool IsPanel() const OVERRIDE; | 127 virtual bool IsPanel() const OVERRIDE; |
129 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 128 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
130 Profile* profile) OVERRIDE; | 129 Profile* profile) OVERRIDE; |
131 virtual void ToggleBookmarkBar() OVERRIDE; | 130 virtual void ToggleBookmarkBar() OVERRIDE; |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 bool debounce_timer_disabled_; | 574 bool debounce_timer_disabled_; |
576 | 575 |
577 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 576 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
578 | 577 |
579 content::NotificationRegistrar registrar_; | 578 content::NotificationRegistrar registrar_; |
580 | 579 |
581 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 580 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
582 }; | 581 }; |
583 | 582 |
584 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 583 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |