OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/tab_contents/navigation_entry.h" | 8 #include "chrome/browser/tab_contents/navigation_entry.h" |
9 #include "chrome/common/content_settings_types.h" | 9 #include "chrome/common/content_settings_types.h" |
10 #include "gfx/native_widget_types.h" | 10 #include "gfx/native_widget_types.h" |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 // Shows or hides the extension shelf depending on its current visibility. | 179 // Shows or hides the extension shelf depending on its current visibility. |
180 virtual void ToggleExtensionShelf() = 0; | 180 virtual void ToggleExtensionShelf() = 0; |
181 | 181 |
182 // Shows the About Chrome dialog box. | 182 // Shows the About Chrome dialog box. |
183 virtual void ShowAboutChromeDialog() = 0; | 183 virtual void ShowAboutChromeDialog() = 0; |
184 | 184 |
185 // Shows the Task manager. | 185 // Shows the Task manager. |
186 virtual void ShowTaskManager() = 0; | 186 virtual void ShowTaskManager() = 0; |
187 | 187 |
188 // Shows the Bookmark Manager window. | |
189 virtual void ShowBookmarkManager() = 0; | |
190 | |
191 // Shows the Bookmark bubble. |url| is the URL being bookmarked, | 188 // Shows the Bookmark bubble. |url| is the URL being bookmarked, |
192 // |already_bookmarked| is true if the url is already bookmarked. | 189 // |already_bookmarked| is true if the url is already bookmarked. |
193 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; | 190 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; |
194 | 191 |
195 // Whether or not the shelf view is visible. | 192 // Whether or not the shelf view is visible. |
196 virtual bool IsDownloadShelfVisible() const = 0; | 193 virtual bool IsDownloadShelfVisible() const = 0; |
197 | 194 |
198 // Returns the DownloadShelf. | 195 // Returns the DownloadShelf. |
199 virtual DownloadShelf* GetDownloadShelf() = 0; | 196 virtual DownloadShelf* GetDownloadShelf() = 0; |
200 | 197 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 | 340 |
344 // Returns the TabContentsContainer. | 341 // Returns the TabContentsContainer. |
345 virtual views::View* GetTabContentsContainerView() const = 0; | 342 virtual views::View* GetTabContentsContainerView() const = 0; |
346 | 343 |
347 // Returns the ToolbarView. | 344 // Returns the ToolbarView. |
348 virtual ToolbarView* GetToolbarView() const = 0; | 345 virtual ToolbarView* GetToolbarView() const = 0; |
349 #endif | 346 #endif |
350 }; | 347 }; |
351 | 348 |
352 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ | 349 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ |
OLD | NEW |