| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 virtual void UpdateToolbar(TabContents* contents, | 78 virtual void UpdateToolbar(TabContents* contents, |
| 79 bool should_restore_state); | 79 bool should_restore_state); |
| 80 virtual void FocusToolbar(); | 80 virtual void FocusToolbar(); |
| 81 virtual void FocusAppMenu(); | 81 virtual void FocusAppMenu(); |
| 82 virtual void FocusBookmarksToolbar(); | 82 virtual void FocusBookmarksToolbar(); |
| 83 virtual void FocusChromeOSStatus(); | 83 virtual void FocusChromeOSStatus(); |
| 84 virtual void RotatePaneFocus(bool forwards); | 84 virtual void RotatePaneFocus(bool forwards); |
| 85 virtual bool IsBookmarkBarVisible() const; | 85 virtual bool IsBookmarkBarVisible() const; |
| 86 virtual bool IsBookmarkBarAnimating() const; | 86 virtual bool IsBookmarkBarAnimating() const; |
| 87 virtual bool IsToolbarVisible() const; | 87 virtual bool IsToolbarVisible() const; |
| 88 virtual gfx::Rect GetRootWindowResizerRect() const; | |
| 89 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 88 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 90 Profile* profile); | 89 Profile* profile); |
| 91 virtual void ToggleBookmarkBar(); | 90 virtual void ToggleBookmarkBar(); |
| 92 virtual views::Window* ShowAboutChromeDialog(); | 91 virtual views::Window* ShowAboutChromeDialog(); |
| 93 virtual void ShowUpdateChromeDialog(); | 92 virtual void ShowUpdateChromeDialog(); |
| 94 virtual void ShowTaskManager(); | 93 virtual void ShowTaskManager(); |
| 95 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 94 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
| 96 virtual bool IsDownloadShelfVisible() const; | 95 virtual bool IsDownloadShelfVisible() const; |
| 97 virtual DownloadShelf* GetDownloadShelf(); | 96 virtual DownloadShelf* GetDownloadShelf(); |
| 98 virtual void ShowReportBugDialog(); | 97 virtual void ShowReportBugDialog(); |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 475 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 477 | 476 |
| 478 // The model that tracks the paint state of the arrow for the infobar | 477 // The model that tracks the paint state of the arrow for the infobar |
| 479 // directly below the toolbar. | 478 // directly below the toolbar. |
| 480 InfoBarArrowModel infobar_arrow_model_; | 479 InfoBarArrowModel infobar_arrow_model_; |
| 481 | 480 |
| 482 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 481 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 483 }; | 482 }; |
| 484 | 483 |
| 485 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 484 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |