| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 virtual bool IsPanel() const OVERRIDE; | 126 virtual bool IsPanel() const OVERRIDE; |
| 127 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 127 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 128 Profile* profile) OVERRIDE; | 128 Profile* profile) OVERRIDE; |
| 129 virtual void ToggleBookmarkBar() OVERRIDE; | 129 virtual void ToggleBookmarkBar() OVERRIDE; |
| 130 virtual void ShowAboutChromeDialog() OVERRIDE; | 130 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 131 virtual void ShowUpdateChromeDialog() OVERRIDE; | 131 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 132 virtual void ShowTaskManager() OVERRIDE; | 132 virtual void ShowTaskManager() OVERRIDE; |
| 133 virtual void ShowBackgroundPages() OVERRIDE; | 133 virtual void ShowBackgroundPages() OVERRIDE; |
| 134 virtual void ShowBookmarkBubble(const GURL& url, | 134 virtual void ShowBookmarkBubble(const GURL& url, |
| 135 bool already_bookmarked) OVERRIDE; | 135 bool already_bookmarked) OVERRIDE; |
| 136 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 136 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 137 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 137 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 138 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 138 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 139 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 139 virtual void UserChangedTheme() OVERRIDE; | 140 virtual void UserChangedTheme() OVERRIDE; |
| 140 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 141 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 141 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 142 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 142 virtual void ShowPageInfo(Profile* profile, | 143 virtual void ShowPageInfo(Profile* profile, |
| 143 const GURL& url, | 144 const GURL& url, |
| 144 const content::SSLStatus& ssl, | 145 const content::SSLStatus& ssl, |
| 145 bool show_history) OVERRIDE; | 146 bool show_history) OVERRIDE; |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 // autocomplete popup before the results can be read) and the final window | 560 // autocomplete popup before the results can be read) and the final window |
| 560 // position is unimportant. | 561 // position is unimportant. |
| 561 bool debounce_timer_disabled_; | 562 bool debounce_timer_disabled_; |
| 562 | 563 |
| 563 content::NotificationRegistrar registrar_; | 564 content::NotificationRegistrar registrar_; |
| 564 | 565 |
| 565 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 566 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 566 }; | 567 }; |
| 567 | 568 |
| 568 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 569 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |