| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual bool IsBookmarkBarVisible() const { return false; } | 69 virtual bool IsBookmarkBarVisible() const { return false; } |
| 70 virtual bool IsBookmarkBarAnimating() const { return false; } | 70 virtual bool IsBookmarkBarAnimating() const { return false; } |
| 71 virtual bool IsTabStripEditable() const { return false; } | 71 virtual bool IsTabStripEditable() const { return false; } |
| 72 virtual bool IsToolbarVisible() const { return false; } | 72 virtual bool IsToolbarVisible() const { return false; } |
| 73 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 73 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 74 Profile* profile) {} | 74 Profile* profile) {} |
| 75 virtual void ToggleBookmarkBar() {} | 75 virtual void ToggleBookmarkBar() {} |
| 76 virtual views::Window* ShowAboutChromeDialog() { return NULL; } | 76 virtual views::Window* ShowAboutChromeDialog() { return NULL; } |
| 77 virtual void ShowUpdateChromeDialog() {} | 77 virtual void ShowUpdateChromeDialog() {} |
| 78 virtual void ShowTaskManager() {} | 78 virtual void ShowTaskManager() {} |
| 79 virtual void ShowBackgroundPages() {} |
| 79 virtual void ShowBookmarkManager() {} | 80 virtual void ShowBookmarkManager() {} |
| 80 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) {} | 81 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) {} |
| 81 virtual bool IsDownloadShelfVisible() const { return false; } | 82 virtual bool IsDownloadShelfVisible() const { return false; } |
| 82 virtual DownloadShelf* GetDownloadShelf() { return NULL; } | 83 virtual DownloadShelf* GetDownloadShelf() { return NULL; } |
| 83 virtual void ShowReportBugDialog() {} | 84 virtual void ShowReportBugDialog() {} |
| 84 virtual void ShowClearBrowsingDataDialog() {} | 85 virtual void ShowClearBrowsingDataDialog() {} |
| 85 virtual void ShowImportDialog() {} | 86 virtual void ShowImportDialog() {} |
| 86 virtual void ShowSearchEnginesDialog() {} | 87 virtual void ShowSearchEnginesDialog() {} |
| 87 virtual void ShowPasswordManager() {} | 88 virtual void ShowPasswordManager() {} |
| 88 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} | 89 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) {} |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 protected: | 124 protected: |
| 124 virtual void DestroyBrowser() {} | 125 virtual void DestroyBrowser() {} |
| 125 | 126 |
| 126 private: | 127 private: |
| 127 TestLocationBar location_bar_; | 128 TestLocationBar location_bar_; |
| 128 | 129 |
| 129 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 130 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 130 }; | 131 }; |
| 131 | 132 |
| 132 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ | 133 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |