| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 virtual void UserChangedTheme() {} | 92 virtual void UserChangedTheme() {} |
| 93 virtual int GetExtraRenderViewHeight() const { return 0; } | 93 virtual int GetExtraRenderViewHeight() const { return 0; } |
| 94 virtual void TabContentsFocused(TabContents* tab_contents) { } | 94 virtual void TabContentsFocused(TabContents* tab_contents) { } |
| 95 virtual void ShowPageInfo(Profile* profile, | 95 virtual void ShowPageInfo(Profile* profile, |
| 96 const GURL& url, | 96 const GURL& url, |
| 97 const NavigationEntry::SSLStatus& ssl, | 97 const NavigationEntry::SSLStatus& ssl, |
| 98 bool show_history) { } | 98 bool show_history) { } |
| 99 virtual void Cut() { } | 99 virtual void Cut() { } |
| 100 virtual void Copy() { } | 100 virtual void Copy() { } |
| 101 virtual void Paste() { } | 101 virtual void Paste() { } |
| 102 virtual void ToggleTabStripMode() { } | |
| 103 | 102 |
| 104 protected: | 103 protected: |
| 105 virtual void DestroyBrowser() {} | 104 virtual void DestroyBrowser() {} |
| 106 | 105 |
| 107 private: | 106 private: |
| 108 TestLocationBar location_bar_; | 107 TestLocationBar location_bar_; |
| 109 | 108 |
| 110 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 109 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 111 }; | 110 }; |
| 112 | 111 |
| 113 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 112 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |