| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BASE_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 virtual void ShowCreateWebAppShortcutsDialog( | 73 virtual void ShowCreateWebAppShortcutsDialog( |
| 74 TabContentsWrapper* tab_contents) OVERRIDE {} | 74 TabContentsWrapper* tab_contents) OVERRIDE {} |
| 75 virtual void ShowCreateChromeAppShortcutsDialog( | 75 virtual void ShowCreateChromeAppShortcutsDialog( |
| 76 Profile* profile, | 76 Profile* profile, |
| 77 const Extension* app) OVERRIDE {} | 77 const Extension* app) OVERRIDE {} |
| 78 | 78 |
| 79 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 79 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 80 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 80 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 81 virtual bool IsTabStripEditable() const OVERRIDE; | 81 virtual bool IsTabStripEditable() const OVERRIDE; |
| 82 virtual bool IsToolbarVisible() const OVERRIDE; | 82 virtual bool IsToolbarVisible() const OVERRIDE; |
| 83 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 83 virtual bool IsPanel() const OVERRIDE; | 84 virtual bool IsPanel() const OVERRIDE; |
| 84 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 85 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 85 Profile* profile) OVERRIDE {} | 86 Profile* profile) OVERRIDE {} |
| 86 virtual void ToggleBookmarkBar() OVERRIDE {} | 87 virtual void ToggleBookmarkBar() OVERRIDE {} |
| 87 virtual void ShowAboutChromeDialog() OVERRIDE; | 88 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 88 virtual void ShowUpdateChromeDialog() OVERRIDE {} | 89 virtual void ShowUpdateChromeDialog() OVERRIDE {} |
| 89 virtual void ShowTaskManager() OVERRIDE {} | 90 virtual void ShowTaskManager() OVERRIDE {} |
| 90 virtual void ShowBackgroundPages() OVERRIDE {} | 91 virtual void ShowBackgroundPages() OVERRIDE {} |
| 91 virtual void ShowBookmarkBubble(const GURL& url, | 92 virtual void ShowBookmarkBubble(const GURL& url, |
| 92 bool already_bookmarked) OVERRIDE {} | 93 bool already_bookmarked) OVERRIDE {} |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 protected: | 133 protected: |
| 133 virtual void DestroyBrowser() OVERRIDE {} | 134 virtual void DestroyBrowser() OVERRIDE {} |
| 134 | 135 |
| 135 private: | 136 private: |
| 136 TestLocationBar location_bar_; | 137 TestLocationBar location_bar_; |
| 137 | 138 |
| 138 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 139 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 139 }; | 140 }; |
| 140 | 141 |
| 141 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 142 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |