| 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_TEST_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| 6 #define CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/browser_window.h" | 9 #include "chrome/browser/browser_window.h" |
| 10 #include "chrome/test/test_location_bar.h" | 10 #include "chrome/test/test_location_bar.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 virtual void ShowAboutChromeDialog(); | 71 virtual void ShowAboutChromeDialog(); |
| 72 virtual void ShowUpdateChromeDialog() {} | 72 virtual void ShowUpdateChromeDialog() {} |
| 73 virtual void ShowTaskManager() {} | 73 virtual void ShowTaskManager() {} |
| 74 virtual void ShowBackgroundPages() {} | 74 virtual void ShowBackgroundPages() {} |
| 75 virtual void ShowBookmarkManager() {} | 75 virtual void ShowBookmarkManager() {} |
| 76 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) {} | 76 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) {} |
| 77 virtual bool IsDownloadShelfVisible() const; | 77 virtual bool IsDownloadShelfVisible() const; |
| 78 virtual DownloadShelf* GetDownloadShelf(); | 78 virtual DownloadShelf* GetDownloadShelf(); |
| 79 virtual void ShowReportBugDialog() {} | 79 virtual void ShowReportBugDialog() {} |
| 80 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} | 80 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} |
| 81 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, | |
| 82 Profile* profile) {} | |
| 83 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) {} | 81 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) {} |
| 84 virtual void ShowProfileErrorDialog(int message_id) {} | 82 virtual void ShowProfileErrorDialog(int message_id) {} |
| 85 virtual void ShowThemeInstallBubble() {} | 83 virtual void ShowThemeInstallBubble() {} |
| 86 virtual void ConfirmBrowserCloseWithPendingDownloads() {} | 84 virtual void ConfirmBrowserCloseWithPendingDownloads() {} |
| 87 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 85 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 88 gfx::NativeWindow parent_window) {} | 86 gfx::NativeWindow parent_window) {} |
| 89 virtual void UserChangedTheme() {} | 87 virtual void UserChangedTheme() {} |
| 90 virtual int GetExtraRenderViewHeight() const; | 88 virtual int GetExtraRenderViewHeight() const; |
| 91 virtual void TabContentsFocused(TabContents* tab_contents) {} | 89 virtual void TabContentsFocused(TabContents* tab_contents) {} |
| 92 virtual void ShowPageInfo(Profile* profile, | 90 virtual void ShowPageInfo(Profile* profile, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 110 protected: | 108 protected: |
| 111 virtual void DestroyBrowser() {} | 109 virtual void DestroyBrowser() {} |
| 112 | 110 |
| 113 private: | 111 private: |
| 114 TestLocationBar location_bar_; | 112 TestLocationBar location_bar_; |
| 115 | 113 |
| 116 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 114 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 117 }; | 115 }; |
| 118 | 116 |
| 119 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 117 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |