| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/browser_window.h" | 9 #include "chrome/browser/browser_window.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 bool show_history) {} | 101 bool show_history) {} |
| 102 virtual void Cut() {} | 102 virtual void Cut() {} |
| 103 virtual void Copy() {} | 103 virtual void Copy() {} |
| 104 virtual void Paste() {} | 104 virtual void Paste() {} |
| 105 virtual void ToggleTabStripMode() {} | 105 virtual void ToggleTabStripMode() {} |
| 106 virtual void OpenTabpose() {} | 106 virtual void OpenTabpose() {} |
| 107 virtual void PrepareForInstant() {} | 107 virtual void PrepareForInstant() {} |
| 108 virtual void ShowInstant(TabContents* preview_contents) {} | 108 virtual void ShowInstant(TabContents* preview_contents) {} |
| 109 virtual void HideInstant() {} | 109 virtual void HideInstant() {} |
| 110 virtual gfx::Rect GetInstantBounds() { return gfx::Rect(); } | 110 virtual gfx::Rect GetInstantBounds() { return gfx::Rect(); } |
| 111 #if defined(OS_CHROMEOS) |
| 112 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) {} |
| 113 #endif |
| 111 | 114 |
| 112 protected: | 115 protected: |
| 113 virtual void DestroyBrowser() {} | 116 virtual void DestroyBrowser() {} |
| 114 | 117 |
| 115 private: | 118 private: |
| 116 TestLocationBar location_bar_; | 119 TestLocationBar location_bar_; |
| 117 | 120 |
| 118 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 121 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 119 }; | 122 }; |
| 120 | 123 |
| 121 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 124 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |