| 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_BROWSER_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_WINDOW_H_ |
| 6 #define CHROME_BROWSER_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_BROWSER_WINDOW_H_ |
| 7 | 7 |
| 8 #include "base/gfx/native_widget_types.h" | 8 #include "base/gfx/native_widget_types.h" |
| 9 | 9 |
| 10 class Browser; | 10 class Browser; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // select from deactivating the browser frame. A stub implementation is | 128 // select from deactivating the browser frame. A stub implementation is |
| 129 // provided here since the functionality is Windows-specific. | 129 // provided here since the functionality is Windows-specific. |
| 130 virtual void DisableInactiveFrame() {} | 130 virtual void DisableInactiveFrame() {} |
| 131 | 131 |
| 132 // Shows or hides the bookmark bar depending on its current visibility. | 132 // Shows or hides the bookmark bar depending on its current visibility. |
| 133 virtual void ToggleBookmarkBar() = 0; | 133 virtual void ToggleBookmarkBar() = 0; |
| 134 | 134 |
| 135 // Shows the About Chrome dialog box. | 135 // Shows the About Chrome dialog box. |
| 136 virtual void ShowAboutChromeDialog() = 0; | 136 virtual void ShowAboutChromeDialog() = 0; |
| 137 | 137 |
| 138 // Shows the Task manager. |
| 139 virtual void ShowTaskManager() = 0; |
| 140 |
| 138 // Shows the Bookmark Manager window. | 141 // Shows the Bookmark Manager window. |
| 139 virtual void ShowBookmarkManager() = 0; | 142 virtual void ShowBookmarkManager() = 0; |
| 140 | 143 |
| 141 // Shows the Bookmark bubble. |url| is the URL being bookmarked, | 144 // Shows the Bookmark bubble. |url| is the URL being bookmarked, |
| 142 // |already_bookmarked| is true if the url is already bookmarked. | 145 // |already_bookmarked| is true if the url is already bookmarked. |
| 143 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; | 146 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; |
| 144 | 147 |
| 145 // Whether or not the shelf view is visible. | 148 // Whether or not the shelf view is visible. |
| 146 virtual bool IsDownloadShelfVisible() const = 0; | 149 virtual bool IsDownloadShelfVisible() const = 0; |
| 147 | 150 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 229 |
| 227 // Returns the LocationBarView. | 230 // Returns the LocationBarView. |
| 228 virtual LocationBarView* GetLocationBarView() const = 0; | 231 virtual LocationBarView* GetLocationBarView() const = 0; |
| 229 | 232 |
| 230 // Returns the TabContentsContainer. | 233 // Returns the TabContentsContainer. |
| 231 virtual views::View* GetTabContentsContainerView() const = 0; | 234 virtual views::View* GetTabContentsContainerView() const = 0; |
| 232 #endif | 235 #endif |
| 233 }; | 236 }; |
| 234 | 237 |
| 235 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ | 238 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ |
| OLD | NEW |