| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 virtual bool IsBookmarkBarVisible() const; | 85 virtual bool IsBookmarkBarVisible() const; |
| 86 virtual bool IsBookmarkBarAnimating() const; | 86 virtual bool IsBookmarkBarAnimating() const; |
| 87 virtual bool IsTabStripEditable() const; | 87 virtual bool IsTabStripEditable() const; |
| 88 virtual bool IsToolbarVisible() const; | 88 virtual bool IsToolbarVisible() 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 views::Window* ShowAboutChromeDialog(); | 92 virtual views::Window* ShowAboutChromeDialog(); |
| 93 virtual void ShowUpdateChromeDialog(); | 93 virtual void ShowUpdateChromeDialog(); |
| 94 virtual void ShowTaskManager(); | 94 virtual void ShowTaskManager(); |
| 95 virtual void ShowBackgroundPages(); |
| 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 ShowClearBrowsingDataDialog(); | 99 virtual void ShowClearBrowsingDataDialog(); |
| 99 virtual void ShowImportDialog(); | 100 virtual void ShowImportDialog(); |
| 100 virtual void ShowSearchEnginesDialog(); | 101 virtual void ShowSearchEnginesDialog(); |
| 101 virtual void ShowPasswordManager(); | 102 virtual void ShowPasswordManager(); |
| 102 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 103 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
| 103 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, | 104 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, |
| 104 Profile* profile); | 105 Profile* profile); |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 488 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 488 | 489 |
| 489 // The model that tracks the paint state of the arrow for the infobar | 490 // The model that tracks the paint state of the arrow for the infobar |
| 490 // directly below the toolbar. | 491 // directly below the toolbar. |
| 491 InfoBarArrowModel infobar_arrow_model_; | 492 InfoBarArrowModel infobar_arrow_model_; |
| 492 | 493 |
| 493 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 494 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 494 }; | 495 }; |
| 495 | 496 |
| 496 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 497 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |