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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 virtual void SetFocusToLocationBar(); | 208 virtual void SetFocusToLocationBar(); |
209 virtual void UpdateStopGoState(bool is_loading, bool force); | 209 virtual void UpdateStopGoState(bool is_loading, bool force); |
210 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state); | 210 virtual void UpdateToolbar(TabContents* contents, bool should_restore_state); |
211 virtual void FocusToolbar(); | 211 virtual void FocusToolbar(); |
212 virtual void DestroyBrowser(); | 212 virtual void DestroyBrowser(); |
213 virtual bool IsBookmarkBarVisible() const; | 213 virtual bool IsBookmarkBarVisible() const; |
214 virtual gfx::Rect GetRootWindowResizerRect() const; | 214 virtual gfx::Rect GetRootWindowResizerRect() const; |
215 virtual void DisableInactiveFrame(); | 215 virtual void DisableInactiveFrame(); |
216 virtual void ToggleBookmarkBar(); | 216 virtual void ToggleBookmarkBar(); |
217 virtual void ShowAboutChromeDialog(); | 217 virtual void ShowAboutChromeDialog(); |
| 218 virtual void ShowTaskManager(); |
218 virtual void ShowBookmarkManager(); | 219 virtual void ShowBookmarkManager(); |
219 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 220 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
220 virtual void SetDownloadShelfVisible(bool visible); | 221 virtual void SetDownloadShelfVisible(bool visible); |
221 virtual bool IsDownloadShelfVisible() const; | 222 virtual bool IsDownloadShelfVisible() const; |
222 virtual DownloadShelf* GetDownloadShelf(); | 223 virtual DownloadShelf* GetDownloadShelf(); |
223 virtual void ShowReportBugDialog(); | 224 virtual void ShowReportBugDialog(); |
224 virtual void ShowClearBrowsingDataDialog(); | 225 virtual void ShowClearBrowsingDataDialog(); |
225 virtual void ShowImportDialog(); | 226 virtual void ShowImportDialog(); |
226 virtual void ShowSearchEnginesDialog(); | 227 virtual void ShowSearchEnginesDialog(); |
227 virtual void ShowPasswordManager(); | 228 virtual void ShowPasswordManager(); |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 // A bottom bar for showing extensions. | 452 // A bottom bar for showing extensions. |
452 ExtensionShelf* extension_shelf_; | 453 ExtensionShelf* extension_shelf_; |
453 | 454 |
454 typedef std::set<BrowserBubble*> BubbleSet; | 455 typedef std::set<BrowserBubble*> BubbleSet; |
455 BubbleSet browser_bubbles_; | 456 BubbleSet browser_bubbles_; |
456 | 457 |
457 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 458 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
458 }; | 459 }; |
459 | 460 |
460 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 461 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |