| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 RotatePaneFocus(bool forwards) OVERRIDE; | 120 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 121 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 121 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 122 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 122 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 123 virtual bool IsTabStripEditable() const OVERRIDE; | 123 virtual bool IsTabStripEditable() const OVERRIDE; |
| 124 virtual bool IsToolbarVisible() const OVERRIDE; | 124 virtual bool IsToolbarVisible() const OVERRIDE; |
| 125 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 125 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 126 virtual bool IsPanel() const OVERRIDE; | |
| 127 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 126 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
| 128 Profile* profile) OVERRIDE; | 127 Profile* profile) OVERRIDE; |
| 129 virtual void ToggleBookmarkBar() OVERRIDE; | 128 virtual void ToggleBookmarkBar() OVERRIDE; |
| 130 virtual void ShowUpdateChromeDialog() OVERRIDE; | 129 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 131 virtual void ShowBookmarkBubble(const GURL& url, | 130 virtual void ShowBookmarkBubble(const GURL& url, |
| 132 bool already_bookmarked) OVERRIDE; | 131 bool already_bookmarked) OVERRIDE; |
| 133 virtual void ShowChromeToMobileBubble() OVERRIDE; | 132 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 134 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 133 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 135 virtual void ShowOneClickSigninBubble( | 134 virtual void ShowOneClickSigninBubble( |
| 136 OneClickSigninBubbleType type, | 135 OneClickSigninBubbleType type, |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 572 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 574 | 573 |
| 575 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 574 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 576 | 575 |
| 577 content::NotificationRegistrar registrar_; | 576 content::NotificationRegistrar registrar_; |
| 578 | 577 |
| 579 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 578 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 580 }; | 579 }; |
| 581 | 580 |
| 582 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 581 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |