| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 Profile* profile) OVERRIDE; | 121 Profile* profile) OVERRIDE; |
| 122 virtual void ToggleBookmarkBar() OVERRIDE; | 122 virtual void ToggleBookmarkBar() OVERRIDE; |
| 123 virtual void ShowAboutChromeDialog() OVERRIDE; | 123 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 124 virtual void ShowUpdateChromeDialog() OVERRIDE; | 124 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 125 virtual void ShowTaskManager() OVERRIDE; | 125 virtual void ShowTaskManager() OVERRIDE; |
| 126 virtual void ShowBackgroundPages() OVERRIDE; | 126 virtual void ShowBackgroundPages() OVERRIDE; |
| 127 virtual void ShowBookmarkBubble(const GURL& url, | 127 virtual void ShowBookmarkBubble(const GURL& url, |
| 128 bool already_bookmarked) OVERRIDE; | 128 bool already_bookmarked) OVERRIDE; |
| 129 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 129 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 130 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 130 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 131 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | 131 virtual void ShowTabModalDialog(TabModalDialogDelegate* delegate, |
| 132 TabContents* tab_contents) OVERRIDE; |
| 132 virtual void ShowCollectedCookiesDialog( | 133 virtual void ShowCollectedCookiesDialog( |
| 133 TabContentsWrapper* tab_contents) OVERRIDE; | 134 TabContentsWrapper* tab_contents) OVERRIDE; |
| 134 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 135 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 135 virtual void UserChangedTheme() OVERRIDE; | 136 virtual void UserChangedTheme() OVERRIDE; |
| 136 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 137 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 137 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; | 138 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; |
| 138 virtual void ShowPageInfo(Profile* profile, | 139 virtual void ShowPageInfo(Profile* profile, |
| 139 const GURL& url, | 140 const GURL& url, |
| 140 const NavigationEntry::SSLStatus& ssl, | 141 const NavigationEntry::SSLStatus& ssl, |
| 141 bool show_history) OVERRIDE; | 142 bool show_history) OVERRIDE; |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 // be called. This should only be enabled in tests where the debounce timeout | 531 // be called. This should only be enabled in tests where the debounce timeout |
| 531 // introduces timing issues (e.g. in OmniBoxApiTest it dismisses the | 532 // introduces timing issues (e.g. in OmniBoxApiTest it dismisses the |
| 532 // autocomplete popup before the results can be read) and the final window | 533 // autocomplete popup before the results can be read) and the final window |
| 533 // position is unimportant. | 534 // position is unimportant. |
| 534 bool debounce_timer_disabled_; | 535 bool debounce_timer_disabled_; |
| 535 | 536 |
| 536 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 537 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 537 }; | 538 }; |
| 538 | 539 |
| 539 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 540 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |