OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 virtual bool IsBookmarkBarVisible() const; | 79 virtual bool IsBookmarkBarVisible() const; |
80 virtual bool IsBookmarkBarAnimating() const; | 80 virtual bool IsBookmarkBarAnimating() const; |
81 virtual bool IsToolbarVisible() const; | 81 virtual bool IsToolbarVisible() const; |
82 virtual gfx::Rect GetRootWindowResizerRect() const; | 82 virtual gfx::Rect GetRootWindowResizerRect() const; |
83 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 83 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
84 Profile* profile); | 84 Profile* profile); |
85 virtual void ToggleBookmarkBar(); | 85 virtual void ToggleBookmarkBar(); |
86 virtual void ToggleExtensionShelf(); | 86 virtual void ToggleExtensionShelf(); |
87 virtual void ShowAboutChromeDialog(); | 87 virtual void ShowAboutChromeDialog(); |
88 virtual void ShowTaskManager(); | 88 virtual void ShowTaskManager(); |
89 virtual void ShowBookmarkManager(); | |
90 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 89 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
91 virtual bool IsDownloadShelfVisible() const; | 90 virtual bool IsDownloadShelfVisible() const; |
92 virtual DownloadShelf* GetDownloadShelf(); | 91 virtual DownloadShelf* GetDownloadShelf(); |
93 virtual void ShowReportBugDialog(); | 92 virtual void ShowReportBugDialog(); |
94 virtual void ShowClearBrowsingDataDialog(); | 93 virtual void ShowClearBrowsingDataDialog(); |
95 virtual void ShowImportDialog(); | 94 virtual void ShowImportDialog(); |
96 virtual void ShowSearchEnginesDialog(); | 95 virtual void ShowSearchEnginesDialog(); |
97 virtual void ShowPasswordManager(); | 96 virtual void ShowPasswordManager(); |
98 virtual void ShowSelectProfileDialog(); | 97 virtual void ShowSelectProfileDialog(); |
99 virtual void ShowNewProfileDialog(); | 98 virtual void ShowNewProfileDialog(); |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 | 407 |
409 // The accelerator group used to handle accelerators, owned by this object. | 408 // The accelerator group used to handle accelerators, owned by this object. |
410 GtkAccelGroup* accel_group_; | 409 GtkAccelGroup* accel_group_; |
411 | 410 |
412 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 411 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
413 | 412 |
414 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 413 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
415 }; | 414 }; |
416 | 415 |
417 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 416 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |