| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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/browser/views/tabs/tab_strip.h" | 10 #include "chrome/browser/views/tabs/tab_strip.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 virtual void ShowImportDialog() {} | 59 virtual void ShowImportDialog() {} |
| 60 virtual void ShowSearchEnginesDialog() {} | 60 virtual void ShowSearchEnginesDialog() {} |
| 61 virtual void ShowPasswordManager() {} | 61 virtual void ShowPasswordManager() {} |
| 62 virtual void ShowSelectProfileDialog() {} | 62 virtual void ShowSelectProfileDialog() {} |
| 63 virtual void ShowNewProfileDialog() {} | 63 virtual void ShowNewProfileDialog() {} |
| 64 virtual void ConfirmBrowserCloseWithPendingDownloads() {} | 64 virtual void ConfirmBrowserCloseWithPendingDownloads() {} |
| 65 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 65 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 66 gfx::NativeWindow parent_window) {} | 66 gfx::NativeWindow parent_window) {} |
| 67 virtual void UserChangedTheme() {} | 67 virtual void UserChangedTheme() {} |
| 68 virtual int GetExtraRenderViewHeight() const { return 0; } | 68 virtual int GetExtraRenderViewHeight() const { return 0; } |
| 69 virtual void TabContentsFocused(TabContents* tab_contents) { } |
| 70 |
| 69 protected: | 71 protected: |
| 70 virtual void DestroyBrowser() {} | 72 virtual void DestroyBrowser() {} |
| 71 | 73 |
| 72 private: | 74 private: |
| 73 TabStrip tab_strip_; | 75 TabStrip tab_strip_; |
| 74 | 76 |
| 75 TestLocationBar location_bar_; | 77 TestLocationBar location_bar_; |
| 76 | 78 |
| 77 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 79 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 82 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |