| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 Profile* profile) OVERRIDE; | 127 Profile* profile) OVERRIDE; |
| 128 virtual void ToggleBookmarkBar() OVERRIDE; | 128 virtual void ToggleBookmarkBar() OVERRIDE; |
| 129 virtual void ShowUpdateChromeDialog() OVERRIDE; | 129 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 130 virtual void ShowTaskManager() OVERRIDE; | 130 virtual void ShowTaskManager() OVERRIDE; |
| 131 virtual void ShowBackgroundPages() OVERRIDE; | 131 virtual void ShowBackgroundPages() OVERRIDE; |
| 132 virtual void ShowBookmarkBubble(const GURL& url, | 132 virtual void ShowBookmarkBubble(const GURL& url, |
| 133 bool already_bookmarked) OVERRIDE; | 133 bool already_bookmarked) OVERRIDE; |
| 134 virtual void ShowChromeToMobileBubble() OVERRIDE; | 134 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 135 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 135 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 136 virtual void ShowOneClickSigninBubble( | 136 virtual void ShowOneClickSigninBubble( |
| 137 OneClickSigninBubbleType type, |
| 137 const StartSyncCallback& start_sync_callback) OVERRIDE; | 138 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 138 #endif | 139 #endif |
| 139 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 140 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 140 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 141 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 141 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 142 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 142 virtual void UserChangedTheme() OVERRIDE; | 143 virtual void UserChangedTheme() OVERRIDE; |
| 143 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 144 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 144 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 145 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 145 virtual void ShowWebsiteSettings(Profile* profile, | 146 virtual void ShowWebsiteSettings(Profile* profile, |
| 146 content::WebContents* web_contents, | 147 content::WebContents* web_contents, |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 569 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 569 | 570 |
| 570 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 571 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 571 | 572 |
| 572 content::NotificationRegistrar registrar_; | 573 content::NotificationRegistrar registrar_; |
| 573 | 574 |
| 574 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 575 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 575 }; | 576 }; |
| 576 | 577 |
| 577 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 578 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |