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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 virtual void ShowCollectedCookiesDialog( | 96 virtual void ShowCollectedCookiesDialog( |
97 TabContentsWrapper* wrapper) OVERRIDE {} | 97 TabContentsWrapper* wrapper) OVERRIDE {} |
98 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} | 98 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} |
99 virtual void UserChangedTheme() OVERRIDE {} | 99 virtual void UserChangedTheme() OVERRIDE {} |
100 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 100 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
101 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {} | 101 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {} |
102 virtual void ShowPageInfo(Profile* profile, | 102 virtual void ShowPageInfo(Profile* profile, |
103 const GURL& url, | 103 const GURL& url, |
104 const content::SSLStatus& ssl, | 104 const content::SSLStatus& ssl, |
105 bool show_history) OVERRIDE {} | 105 bool show_history) OVERRIDE {} |
| 106 virtual void ShowWebsiteSettings(Profile* profile, |
| 107 TabContentsWrapper* wrapper, |
| 108 const GURL& url, |
| 109 const content::SSLStatus& ssl, |
| 110 bool show_history) OVERRIDE {} |
106 virtual void Cut() OVERRIDE {} | 111 virtual void Cut() OVERRIDE {} |
107 virtual void Copy() OVERRIDE {} | 112 virtual void Copy() OVERRIDE {} |
108 virtual void Paste() OVERRIDE {} | 113 virtual void Paste() OVERRIDE {} |
109 #if defined(OS_MACOSX) | 114 #if defined(OS_MACOSX) |
110 virtual void OpenTabpose() OVERRIDE {} | 115 virtual void OpenTabpose() OVERRIDE {} |
111 virtual void EnterPresentationMode( | 116 virtual void EnterPresentationMode( |
112 const GURL& url, | 117 const GURL& url, |
113 FullscreenExitBubbleType bubble_type) OVERRIDE {} | 118 FullscreenExitBubbleType bubble_type) OVERRIDE {} |
114 virtual void ExitPresentationMode() OVERRIDE {} | 119 virtual void ExitPresentationMode() OVERRIDE {} |
115 virtual bool InPresentationMode() OVERRIDE; | 120 virtual bool InPresentationMode() OVERRIDE; |
(...skipping 17 matching lines...) Expand all Loading... |
133 protected: | 138 protected: |
134 virtual void DestroyBrowser() OVERRIDE {} | 139 virtual void DestroyBrowser() OVERRIDE {} |
135 | 140 |
136 private: | 141 private: |
137 TestLocationBar location_bar_; | 142 TestLocationBar location_bar_; |
138 | 143 |
139 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 144 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
140 }; | 145 }; |
141 | 146 |
142 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 147 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |