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/test/test_location_bar.h" | 10 #include "chrome/test/test_location_bar.h" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 virtual bool IsDownloadShelfVisible() const { return false; } | 67 virtual bool IsDownloadShelfVisible() const { return false; } |
68 virtual DownloadShelf* GetDownloadShelf() { return NULL; } | 68 virtual DownloadShelf* GetDownloadShelf() { return NULL; } |
69 virtual void ShowReportBugDialog() {} | 69 virtual void ShowReportBugDialog() {} |
70 virtual void ShowClearBrowsingDataDialog() {} | 70 virtual void ShowClearBrowsingDataDialog() {} |
71 virtual void ShowImportDialog() {} | 71 virtual void ShowImportDialog() {} |
72 virtual void ShowSearchEnginesDialog() {} | 72 virtual void ShowSearchEnginesDialog() {} |
73 virtual void ShowPasswordManager() {} | 73 virtual void ShowPasswordManager() {} |
74 virtual void ShowSelectProfileDialog() {} | 74 virtual void ShowSelectProfileDialog() {} |
75 virtual void ShowNewProfileDialog() {} | 75 virtual void ShowNewProfileDialog() {} |
76 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} | 76 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} |
77 virtual void ShowHistoryTooNewDialog() {} | 77 virtual void ShowProfileErrorDialog(int message) {} |
78 virtual void ShowThemeInstallBubble() {} | 78 virtual void ShowThemeInstallBubble() {} |
79 virtual void ConfirmBrowserCloseWithPendingDownloads() {} | 79 virtual void ConfirmBrowserCloseWithPendingDownloads() {} |
80 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 80 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
81 gfx::NativeWindow parent_window) {} | 81 gfx::NativeWindow parent_window) {} |
82 virtual void UserChangedTheme() {} | 82 virtual void UserChangedTheme() {} |
83 virtual int GetExtraRenderViewHeight() const { return 0; } | 83 virtual int GetExtraRenderViewHeight() const { return 0; } |
84 virtual void TabContentsFocused(TabContents* tab_contents) { } | 84 virtual void TabContentsFocused(TabContents* tab_contents) { } |
85 virtual void ShowPageInfo(Profile* profile, | 85 virtual void ShowPageInfo(Profile* profile, |
86 const GURL& url, | 86 const GURL& url, |
87 const NavigationEntry::SSLStatus& ssl, | 87 const NavigationEntry::SSLStatus& ssl, |
88 bool show_history) { } | 88 bool show_history) { } |
89 | 89 |
90 protected: | 90 protected: |
91 virtual void DestroyBrowser() {} | 91 virtual void DestroyBrowser() {} |
92 | 92 |
93 private: | 93 private: |
94 TestLocationBar location_bar_; | 94 TestLocationBar location_bar_; |
95 | 95 |
96 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 96 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
97 }; | 97 }; |
98 | 98 |
99 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 99 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |