OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 7 |
8 #include "chrome/browser/browser.h" | 8 #include "chrome/browser/browser.h" |
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 virtual int GetExtraRenderViewHeight() const { return 0; } | 95 virtual int GetExtraRenderViewHeight() const { return 0; } |
96 virtual void TabContentsFocused(TabContents* tab_contents) { } | 96 virtual void TabContentsFocused(TabContents* tab_contents) { } |
97 virtual void ShowPageInfo(Profile* profile, | 97 virtual void ShowPageInfo(Profile* profile, |
98 const GURL& url, | 98 const GURL& url, |
99 const NavigationEntry::SSLStatus& ssl, | 99 const NavigationEntry::SSLStatus& ssl, |
100 bool show_history) { } | 100 bool show_history) { } |
101 virtual void Cut() { } | 101 virtual void Cut() { } |
102 virtual void Copy() { } | 102 virtual void Copy() { } |
103 virtual void Paste() { } | 103 virtual void Paste() { } |
104 virtual void ToggleTabStripMode() {} | 104 virtual void ToggleTabStripMode() {} |
105 virtual void SetToolbarCollapsedMode(bool val) {} | |
106 | 105 |
107 protected: | 106 protected: |
108 virtual void DestroyBrowser() {} | 107 virtual void DestroyBrowser() {} |
109 | 108 |
110 private: | 109 private: |
111 TestLocationBar location_bar_; | 110 TestLocationBar location_bar_; |
112 | 111 |
113 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 112 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
114 }; | 113 }; |
115 | 114 |
116 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 115 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |