| 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_BASE_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 virtual void ShowTaskManager() OVERRIDE {} | 84 virtual void ShowTaskManager() OVERRIDE {} |
| 85 virtual void ShowBackgroundPages() OVERRIDE {} | 85 virtual void ShowBackgroundPages() OVERRIDE {} |
| 86 virtual void ShowBookmarkBubble(const GURL& url, | 86 virtual void ShowBookmarkBubble(const GURL& url, |
| 87 bool already_bookmarked) OVERRIDE {} | 87 bool already_bookmarked) OVERRIDE {} |
| 88 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 88 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 89 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 89 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 90 virtual void ShowRepostFormWarningDialog( | 90 virtual void ShowRepostFormWarningDialog( |
| 91 TabContents* tab_contents) OVERRIDE {} | 91 TabContents* tab_contents) OVERRIDE {} |
| 92 virtual void ShowCollectedCookiesDialog( | 92 virtual void ShowCollectedCookiesDialog( |
| 93 TabContentsWrapper* wrapper) OVERRIDE {} | 93 TabContentsWrapper* wrapper) OVERRIDE {} |
| 94 virtual void ShowThemeInstallBubble() OVERRIDE {} | |
| 95 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} | 94 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} |
| 96 virtual void UserChangedTheme() OVERRIDE {} | 95 virtual void UserChangedTheme() OVERRIDE {} |
| 97 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 96 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 98 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE {} | 97 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE {} |
| 99 virtual void ShowPageInfo(Profile* profile, | 98 virtual void ShowPageInfo(Profile* profile, |
| 100 const GURL& url, | 99 const GURL& url, |
| 101 const NavigationEntry::SSLStatus& ssl, | 100 const NavigationEntry::SSLStatus& ssl, |
| 102 bool show_history) OVERRIDE {} | 101 bool show_history) OVERRIDE {} |
| 103 virtual void Cut() OVERRIDE {} | 102 virtual void Cut() OVERRIDE {} |
| 104 virtual void Copy() OVERRIDE {} | 103 virtual void Copy() OVERRIDE {} |
| (...skipping 25 matching lines...) Expand all Loading... |
| 130 protected: | 129 protected: |
| 131 virtual void DestroyBrowser() OVERRIDE {} | 130 virtual void DestroyBrowser() OVERRIDE {} |
| 132 | 131 |
| 133 private: | 132 private: |
| 134 TestLocationBar location_bar_; | 133 TestLocationBar location_bar_; |
| 135 | 134 |
| 136 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 135 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 138 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |