| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 107 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 108 virtual void ShowOneClickSigninBubble( | 108 virtual void ShowOneClickSigninBubble( |
| 109 const StartSyncCallback& start_sync_callback) OVERRIDE {} | 109 const StartSyncCallback& start_sync_callback) OVERRIDE {} |
| 110 #endif | 110 #endif |
| 111 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 111 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 112 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 112 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 113 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} | 113 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} |
| 114 virtual void UserChangedTheme() OVERRIDE {} | 114 virtual void UserChangedTheme() OVERRIDE {} |
| 115 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 115 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 116 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {} | 116 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {} |
| 117 virtual void ShowPageInfo(Profile* profile, | 117 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 118 const GURL& url, | 118 const GURL& url, |
| 119 const content::SSLStatus& ssl, | 119 const content::SSLStatus& ssl, |
| 120 bool show_history) OVERRIDE {} | 120 bool show_history) OVERRIDE {} |
| 121 virtual void ShowWebsiteSettings(Profile* profile, | 121 virtual void ShowWebsiteSettings(Profile* profile, |
| 122 TabContents* tab_contents, | 122 TabContents* tab_contents, |
| 123 const GURL& url, | 123 const GURL& url, |
| 124 const content::SSLStatus& ssl, | 124 const content::SSLStatus& ssl, |
| 125 bool show_history) OVERRIDE {} | 125 bool show_history) OVERRIDE {} |
| 126 virtual void Cut() OVERRIDE {} | 126 virtual void Cut() OVERRIDE {} |
| 127 virtual void Copy() OVERRIDE {} | 127 virtual void Copy() OVERRIDE {} |
| (...skipping 20 matching lines...) Expand all Loading... |
| 148 protected: | 148 protected: |
| 149 virtual void DestroyBrowser() OVERRIDE {} | 149 virtual void DestroyBrowser() OVERRIDE {} |
| 150 | 150 |
| 151 private: | 151 private: |
| 152 TestLocationBar location_bar_; | 152 TestLocationBar location_bar_; |
| 153 | 153 |
| 154 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 154 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 155 }; | 155 }; |
| 156 | 156 |
| 157 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 157 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |