| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; | 126 virtual bool IsPanel() const OVERRIDE; |
| 127 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 127 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
| 128 Profile* profile) OVERRIDE; | 128 Profile* profile) OVERRIDE; |
| 129 virtual void ToggleBookmarkBar() OVERRIDE; | 129 virtual void ToggleBookmarkBar() OVERRIDE; |
| 130 virtual void ShowUpdateChromeDialog() OVERRIDE; | 130 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 131 virtual void ShowTaskManager() OVERRIDE; | |
| 132 virtual void ShowBackgroundPages() OVERRIDE; | |
| 133 virtual void ShowBookmarkBubble(const GURL& url, | 131 virtual void ShowBookmarkBubble(const GURL& url, |
| 134 bool already_bookmarked) OVERRIDE; | 132 bool already_bookmarked) OVERRIDE; |
| 135 virtual void ShowChromeToMobileBubble() OVERRIDE; | 133 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 136 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 134 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 137 virtual void ShowOneClickSigninBubble( | 135 virtual void ShowOneClickSigninBubble( |
| 138 OneClickSigninBubbleType type, | 136 OneClickSigninBubbleType type, |
| 139 const StartSyncCallback& start_sync_callback) OVERRIDE; | 137 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 140 #endif | 138 #endif |
| 141 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 139 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 140 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 573 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 576 | 574 |
| 577 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 575 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 578 | 576 |
| 579 content::NotificationRegistrar registrar_; | 577 content::NotificationRegistrar registrar_; |
| 580 | 578 |
| 581 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 579 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 582 }; | 580 }; |
| 583 | 581 |
| 584 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 582 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |