Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: chrome/browser/browser_window.h

Issue 140044: Reorganize the way the task manager is constructed.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/cocoa/browser_window_cocoa.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/cocoa/browser_window_cocoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698