| 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_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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 virtual bool IsBookmarkBarAnimating() const; | 290 virtual bool IsBookmarkBarAnimating() const; |
| 291 virtual bool IsToolbarVisible() const; | 291 virtual bool IsToolbarVisible() const; |
| 292 virtual gfx::Rect GetRootWindowResizerRect() const; | 292 virtual gfx::Rect GetRootWindowResizerRect() const; |
| 293 virtual void DisableInactiveFrame(); | 293 virtual void DisableInactiveFrame(); |
| 294 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 294 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 295 Profile* profile); | 295 Profile* profile); |
| 296 virtual void ToggleBookmarkBar(); | 296 virtual void ToggleBookmarkBar(); |
| 297 virtual void ToggleExtensionShelf(); | 297 virtual void ToggleExtensionShelf(); |
| 298 virtual void ShowAboutChromeDialog(); | 298 virtual void ShowAboutChromeDialog(); |
| 299 virtual void ShowTaskManager(); | 299 virtual void ShowTaskManager(); |
| 300 virtual void ShowBookmarkManager(); | |
| 301 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 300 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
| 302 virtual void SetDownloadShelfVisible(bool visible); | 301 virtual void SetDownloadShelfVisible(bool visible); |
| 303 virtual bool IsDownloadShelfVisible() const; | 302 virtual bool IsDownloadShelfVisible() const; |
| 304 virtual DownloadShelf* GetDownloadShelf(); | 303 virtual DownloadShelf* GetDownloadShelf(); |
| 305 virtual void ShowReportBugDialog(); | 304 virtual void ShowReportBugDialog(); |
| 306 virtual void ShowClearBrowsingDataDialog(); | 305 virtual void ShowClearBrowsingDataDialog(); |
| 307 virtual void ShowImportDialog(); | 306 virtual void ShowImportDialog(); |
| 308 virtual void ShowSearchEnginesDialog(); | 307 virtual void ShowSearchEnginesDialog(); |
| 309 virtual void ShowPasswordManager(); | 308 virtual void ShowPasswordManager(); |
| 310 virtual void ShowSelectProfileDialog(); | 309 virtual void ShowSelectProfileDialog(); |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; | 599 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; |
| 601 #endif | 600 #endif |
| 602 | 601 |
| 603 // Loads extension_app_icon_ asynchronously on the file thread. | 602 // Loads extension_app_icon_ asynchronously on the file thread. |
| 604 ImageLoadingTracker extension_app_icon_loader_; | 603 ImageLoadingTracker extension_app_icon_loader_; |
| 605 | 604 |
| 606 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 605 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 607 }; | 606 }; |
| 608 | 607 |
| 609 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 608 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |