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 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 113 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
114 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 114 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
115 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 115 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
116 virtual bool IsTabStripEditable() const OVERRIDE; | 116 virtual bool IsTabStripEditable() const OVERRIDE; |
117 virtual bool IsToolbarVisible() const OVERRIDE; | 117 virtual bool IsToolbarVisible() const OVERRIDE; |
118 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 118 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
119 virtual bool IsPanel() const OVERRIDE; | 119 virtual bool IsPanel() const OVERRIDE; |
120 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 120 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
121 Profile* profile) OVERRIDE; | 121 Profile* profile) OVERRIDE; |
122 virtual void ToggleBookmarkBar() OVERRIDE; | 122 virtual void ToggleBookmarkBar() OVERRIDE; |
123 virtual void ShowAboutChromeDialog() OVERRIDE; | |
124 virtual void ShowUpdateChromeDialog() OVERRIDE; | 123 virtual void ShowUpdateChromeDialog() OVERRIDE; |
125 virtual void ShowTaskManager() OVERRIDE; | 124 virtual void ShowTaskManager() OVERRIDE; |
126 virtual void ShowBackgroundPages() OVERRIDE; | 125 virtual void ShowBackgroundPages() OVERRIDE; |
127 virtual void ShowBookmarkBubble(const GURL& url, | 126 virtual void ShowBookmarkBubble(const GURL& url, |
128 bool already_bookmarked) OVERRIDE; | 127 bool already_bookmarked) OVERRIDE; |
129 virtual void ShowChromeToMobileBubble() OVERRIDE; | 128 virtual void ShowChromeToMobileBubble() OVERRIDE; |
130 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 129 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
131 virtual void ShowOneClickSigninBubble( | 130 virtual void ShowOneClickSigninBubble( |
132 const StartSyncCallback& start_sync_callback) OVERRIDE; | 131 const StartSyncCallback& start_sync_callback) OVERRIDE; |
133 #endif | 132 #endif |
(...skipping 439 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 |