| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 virtual void UpdateToolbar(TabContents* contents, | 84 virtual void UpdateToolbar(TabContents* contents, |
| 85 bool should_restore_state); | 85 bool should_restore_state); |
| 86 virtual void FocusToolbar(); | 86 virtual void FocusToolbar(); |
| 87 virtual bool IsBookmarkBarVisible() const; | 87 virtual bool IsBookmarkBarVisible() const; |
| 88 virtual gfx::Rect GetRootWindowResizerRect() const; | 88 virtual gfx::Rect GetRootWindowResizerRect() const; |
| 89 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 89 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 90 Profile* profile); | 90 Profile* profile); |
| 91 virtual void ToggleBookmarkBar(); | 91 virtual void ToggleBookmarkBar(); |
| 92 virtual void ShowAboutChromeDialog(); | 92 virtual void ShowAboutChromeDialog(); |
| 93 virtual void ShowTaskManager(); | 93 virtual void ShowTaskManager(); |
| 94 virtual void ShowApiPermissionsPanel(); |
| 94 virtual void ShowBookmarkManager(); | 95 virtual void ShowBookmarkManager(); |
| 95 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 96 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
| 96 virtual bool IsDownloadShelfVisible() const; | 97 virtual bool IsDownloadShelfVisible() const; |
| 97 virtual DownloadShelf* GetDownloadShelf(); | 98 virtual DownloadShelf* GetDownloadShelf(); |
| 98 virtual void ShowReportBugDialog(); | 99 virtual void ShowReportBugDialog(); |
| 99 virtual void ShowClearBrowsingDataDialog(); | 100 virtual void ShowClearBrowsingDataDialog(); |
| 100 virtual void ShowImportDialog(); | 101 virtual void ShowImportDialog(); |
| 101 virtual void ShowSearchEnginesDialog(); | 102 virtual void ShowSearchEnginesDialog(); |
| 102 virtual void ShowPasswordManager(); | 103 virtual void ShowPasswordManager(); |
| 103 virtual void ShowSelectProfileDialog(); | 104 virtual void ShowSelectProfileDialog(); |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 // first time. This is to work around a compiz bug. | 374 // first time. This is to work around a compiz bug. |
| 374 bool maximize_after_show_; | 375 bool maximize_after_show_; |
| 375 | 376 |
| 376 // The accelerator group used to handle accelerators, owned by this object. | 377 // The accelerator group used to handle accelerators, owned by this object. |
| 377 GtkAccelGroup* accel_group_; | 378 GtkAccelGroup* accel_group_; |
| 378 | 379 |
| 379 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 380 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 380 }; | 381 }; |
| 381 | 382 |
| 382 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 383 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |