| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 132 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 133 virtual void ShowOneClickSigninBubble( | 133 virtual void ShowOneClickSigninBubble( |
| 134 const StartSyncCallback& start_sync_callback) OVERRIDE; | 134 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 135 #endif | 135 #endif |
| 136 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 136 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 137 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 137 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 138 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 138 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 139 virtual void UserChangedTheme() OVERRIDE; | 139 virtual void UserChangedTheme() OVERRIDE; |
| 140 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 140 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 141 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 141 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 142 virtual void ShowPageInfo(Profile* profile, | 142 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 143 const GURL& url, | 143 const GURL& url, |
| 144 const content::SSLStatus& ssl, | 144 const content::SSLStatus& ssl, |
| 145 bool show_history) OVERRIDE; | 145 bool show_history) OVERRIDE; |
| 146 virtual void ShowWebsiteSettings(Profile* profile, | 146 virtual void ShowWebsiteSettings(Profile* profile, |
| 147 TabContents* tab_contents, | 147 TabContents* tab_contents, |
| 148 const GURL& url, | 148 const GURL& url, |
| 149 const content::SSLStatus& ssl, | 149 const content::SSLStatus& ssl, |
| 150 bool show_history) OVERRIDE; | 150 bool show_history) OVERRIDE; |
| 151 virtual void ShowAppMenu() OVERRIDE; | 151 virtual void ShowAppMenu() OVERRIDE; |
| 152 virtual bool PreHandleKeyboardEvent( | 152 virtual bool PreHandleKeyboardEvent( |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 577 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 578 | 578 |
| 579 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 579 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 580 | 580 |
| 581 content::NotificationRegistrar registrar_; | 581 content::NotificationRegistrar registrar_; |
| 582 | 582 |
| 583 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 583 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 584 }; | 584 }; |
| 585 | 585 |
| 586 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 586 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |