| 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 #include "chrome/browser/tab_contents/navigation_entry.h" | 9 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 10 | 10 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 146 |
| 147 // Shows or hides the bookmark bar depending on its current visibility. | 147 // Shows or hides the bookmark bar depending on its current visibility. |
| 148 virtual void ToggleBookmarkBar() = 0; | 148 virtual void ToggleBookmarkBar() = 0; |
| 149 | 149 |
| 150 // Shows the About Chrome dialog box. | 150 // Shows the About Chrome dialog box. |
| 151 virtual void ShowAboutChromeDialog() = 0; | 151 virtual void ShowAboutChromeDialog() = 0; |
| 152 | 152 |
| 153 // Shows the Task manager. | 153 // Shows the Task manager. |
| 154 virtual void ShowTaskManager() = 0; | 154 virtual void ShowTaskManager() = 0; |
| 155 | 155 |
| 156 // Shows the API permissions panel. |
| 157 virtual void ShowApiPermissionsPanel() = 0; |
| 158 |
| 156 // Shows the Bookmark Manager window. | 159 // Shows the Bookmark Manager window. |
| 157 virtual void ShowBookmarkManager() = 0; | 160 virtual void ShowBookmarkManager() = 0; |
| 158 | 161 |
| 159 // Shows the Bookmark bubble. |url| is the URL being bookmarked, | 162 // Shows the Bookmark bubble. |url| is the URL being bookmarked, |
| 160 // |already_bookmarked| is true if the url is already bookmarked. | 163 // |already_bookmarked| is true if the url is already bookmarked. |
| 161 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; | 164 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) = 0; |
| 162 | 165 |
| 163 // Whether or not the shelf view is visible. | 166 // Whether or not the shelf view is visible. |
| 164 virtual bool IsDownloadShelfVisible() const = 0; | 167 virtual bool IsDownloadShelfVisible() const = 0; |
| 165 | 168 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 266 |
| 264 // Returns the TabContentsContainer. | 267 // Returns the TabContentsContainer. |
| 265 virtual views::View* GetTabContentsContainerView() const = 0; | 268 virtual views::View* GetTabContentsContainerView() const = 0; |
| 266 | 269 |
| 267 // Returns the ToolbarView. | 270 // Returns the ToolbarView. |
| 268 virtual ToolbarView* GetToolbarView() const = 0; | 271 virtual ToolbarView* GetToolbarView() const = 0; |
| 269 #endif | 272 #endif |
| 270 }; | 273 }; |
| 271 | 274 |
| 272 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ | 275 #endif // CHROME_BROWSER_BROWSER_WINDOW_H_ |
| OLD | NEW |