| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 Profile* profile) OVERRIDE; | 130 Profile* profile) OVERRIDE; |
| 131 virtual void ToggleBookmarkBar() OVERRIDE; | 131 virtual void ToggleBookmarkBar() OVERRIDE; |
| 132 virtual void ShowAboutChromeDialog() OVERRIDE; | 132 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 133 virtual void ShowUpdateChromeDialog() OVERRIDE; | 133 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 134 virtual void ShowTaskManager() OVERRIDE; | 134 virtual void ShowTaskManager() OVERRIDE; |
| 135 virtual void ShowBackgroundPages() OVERRIDE; | 135 virtual void ShowBackgroundPages() OVERRIDE; |
| 136 virtual void ShowBookmarkBubble(const GURL& url, | 136 virtual void ShowBookmarkBubble(const GURL& url, |
| 137 bool already_bookmarked) OVERRIDE; | 137 bool already_bookmarked) OVERRIDE; |
| 138 virtual void ShowChromeToMobileBubble() OVERRIDE; | 138 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 139 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 139 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 140 virtual void ShowOneClickSigninBubble() OVERRIDE; | 140 virtual void ShowOneClickSigninBubble( |
| 141 const base::Closure& learn_more_callback, |
| 142 const base::Closure& advanced_callback) OVERRIDE; |
| 141 #endif | 143 #endif |
| 142 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 144 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 143 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 145 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 144 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 146 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 145 virtual void UserChangedTheme() OVERRIDE; | 147 virtual void UserChangedTheme() OVERRIDE; |
| 146 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 148 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 147 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 149 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 148 virtual void ShowPageInfo(Profile* profile, | 150 virtual void ShowPageInfo(Profile* profile, |
| 149 const GURL& url, | 151 const GURL& url, |
| 150 const content::SSLStatus& ssl, | 152 const content::SSLStatus& ssl, |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 // autocomplete popup before the results can be read) and the final window | 572 // autocomplete popup before the results can be read) and the final window |
| 571 // position is unimportant. | 573 // position is unimportant. |
| 572 bool debounce_timer_disabled_; | 574 bool debounce_timer_disabled_; |
| 573 | 575 |
| 574 content::NotificationRegistrar registrar_; | 576 content::NotificationRegistrar registrar_; |
| 575 | 577 |
| 576 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 578 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 577 }; | 579 }; |
| 578 | 580 |
| 579 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 581 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |