| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 virtual bool IsDownloadShelfVisible() const; | 97 virtual bool IsDownloadShelfVisible() const; |
| 98 virtual DownloadShelf* GetDownloadShelf(); | 98 virtual DownloadShelf* GetDownloadShelf(); |
| 99 virtual void ShowReportBugDialog(); | 99 virtual void ShowReportBugDialog(); |
| 100 virtual void ShowClearBrowsingDataDialog(); | 100 virtual void ShowClearBrowsingDataDialog(); |
| 101 virtual void ShowImportDialog(); | 101 virtual void ShowImportDialog(); |
| 102 virtual void ShowSearchEnginesDialog(); | 102 virtual void ShowSearchEnginesDialog(); |
| 103 virtual void ShowPasswordManager(); | 103 virtual void ShowPasswordManager(); |
| 104 virtual void ShowSelectProfileDialog(); | 104 virtual void ShowSelectProfileDialog(); |
| 105 virtual void ShowNewProfileDialog(); | 105 virtual void ShowNewProfileDialog(); |
| 106 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 106 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
| 107 virtual void ShowHistoryTooNewDialog(); | 107 virtual void ShowProfileErrorDialog(int message_id); |
| 108 virtual void ShowThemeInstallBubble(); | 108 virtual void ShowThemeInstallBubble(); |
| 109 virtual void ConfirmBrowserCloseWithPendingDownloads(); | 109 virtual void ConfirmBrowserCloseWithPendingDownloads(); |
| 110 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 110 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 111 gfx::NativeWindow parent_window); | 111 gfx::NativeWindow parent_window); |
| 112 virtual void UserChangedTheme(); | 112 virtual void UserChangedTheme(); |
| 113 virtual int GetExtraRenderViewHeight() const; | 113 virtual int GetExtraRenderViewHeight() const; |
| 114 virtual void TabContentsFocused(TabContents* tab_contents); | 114 virtual void TabContentsFocused(TabContents* tab_contents); |
| 115 virtual void ShowPageInfo(Profile* profile, | 115 virtual void ShowPageInfo(Profile* profile, |
| 116 const GURL& url, | 116 const GURL& url, |
| 117 const NavigationEntry::SSLStatus& ssl, | 117 const NavigationEntry::SSLStatus& ssl, |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 // first time. This is to work around a compiz bug. | 422 // first time. This is to work around a compiz bug. |
| 423 bool maximize_after_show_; | 423 bool maximize_after_show_; |
| 424 | 424 |
| 425 // The accelerator group used to handle accelerators, owned by this object. | 425 // The accelerator group used to handle accelerators, owned by this object. |
| 426 GtkAccelGroup* accel_group_; | 426 GtkAccelGroup* accel_group_; |
| 427 | 427 |
| 428 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 428 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 429 }; | 429 }; |
| 430 | 430 |
| 431 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 431 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |