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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 Profile* profile); | 91 Profile* profile); |
92 virtual void ToggleBookmarkBar(); | 92 virtual void ToggleBookmarkBar(); |
93 virtual void ShowAboutChromeDialog(); | 93 virtual void ShowAboutChromeDialog(); |
94 virtual void ShowUpdateChromeDialog(); | 94 virtual void ShowUpdateChromeDialog(); |
95 virtual void ShowTaskManager(); | 95 virtual void ShowTaskManager(); |
96 virtual void ShowBackgroundPages(); | 96 virtual void ShowBackgroundPages(); |
97 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 97 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
98 virtual bool IsDownloadShelfVisible() const; | 98 virtual bool IsDownloadShelfVisible() const; |
99 virtual DownloadShelf* GetDownloadShelf(); | 99 virtual DownloadShelf* GetDownloadShelf(); |
100 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 100 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
101 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, | |
102 Profile* profile); | |
103 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents); | 101 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents); |
104 virtual void ShowProfileErrorDialog(int message_id); | 102 virtual void ShowProfileErrorDialog(int message_id); |
105 virtual void ShowThemeInstallBubble(); | 103 virtual void ShowThemeInstallBubble(); |
106 virtual void ConfirmBrowserCloseWithPendingDownloads(); | 104 virtual void ConfirmBrowserCloseWithPendingDownloads(); |
107 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 105 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
108 gfx::NativeWindow parent_window); | 106 gfx::NativeWindow parent_window); |
109 virtual void UserChangedTheme(); | 107 virtual void UserChangedTheme(); |
110 virtual int GetExtraRenderViewHeight() const; | 108 virtual int GetExtraRenderViewHeight() const; |
111 virtual void TabContentsFocused(TabContents* tab_contents); | 109 virtual void TabContentsFocused(TabContents* tab_contents); |
112 virtual void ShowPageInfo(Profile* profile, | 110 virtual void ShowPageInfo(Profile* profile, |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 485 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
488 | 486 |
489 // The model that tracks the paint state of the arrow for the infobar | 487 // The model that tracks the paint state of the arrow for the infobar |
490 // directly below the toolbar. | 488 // directly below the toolbar. |
491 InfoBarArrowModel infobar_arrow_model_; | 489 InfoBarArrowModel infobar_arrow_model_; |
492 | 490 |
493 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 491 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
494 }; | 492 }; |
495 | 493 |
496 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 494 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |