| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 virtual void ToggleBookmarkBar(); | 278 virtual void ToggleBookmarkBar(); |
| 279 virtual void ShowAboutChromeDialog(); | 279 virtual void ShowAboutChromeDialog(); |
| 280 virtual void ShowUpdateChromeDialog(); | 280 virtual void ShowUpdateChromeDialog(); |
| 281 virtual void ShowTaskManager(); | 281 virtual void ShowTaskManager(); |
| 282 virtual void ShowBackgroundPages(); | 282 virtual void ShowBackgroundPages(); |
| 283 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); | 283 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); |
| 284 virtual void SetDownloadShelfVisible(bool visible); | 284 virtual void SetDownloadShelfVisible(bool visible); |
| 285 virtual bool IsDownloadShelfVisible() const; | 285 virtual bool IsDownloadShelfVisible() const; |
| 286 virtual DownloadShelf* GetDownloadShelf(); | 286 virtual DownloadShelf* GetDownloadShelf(); |
| 287 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); | 287 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); |
| 288 virtual void ShowContentSettingsWindow(ContentSettingsType content_type, | |
| 289 Profile* profile); | |
| 290 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents); | 288 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents); |
| 291 virtual void ShowProfileErrorDialog(int message_id); | 289 virtual void ShowProfileErrorDialog(int message_id); |
| 292 virtual void ShowThemeInstallBubble(); | 290 virtual void ShowThemeInstallBubble(); |
| 293 virtual void ConfirmBrowserCloseWithPendingDownloads(); | 291 virtual void ConfirmBrowserCloseWithPendingDownloads(); |
| 294 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 292 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 295 gfx::NativeWindow parent_window); | 293 gfx::NativeWindow parent_window); |
| 296 virtual void UserChangedTheme(); | 294 virtual void UserChangedTheme(); |
| 297 virtual int GetExtraRenderViewHeight() const; | 295 virtual int GetExtraRenderViewHeight() const; |
| 298 virtual void TabContentsFocused(TabContents* source); | 296 virtual void TabContentsFocused(TabContents* source); |
| 299 virtual void ShowPageInfo(Profile* profile, | 297 virtual void ShowPageInfo(Profile* profile, |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 | 666 |
| 669 NotificationRegistrar registrar_; | 667 NotificationRegistrar registrar_; |
| 670 | 668 |
| 671 // Used to measure the loading spinner animation rate. | 669 // Used to measure the loading spinner animation rate. |
| 672 base::TimeTicks last_animation_time_; | 670 base::TimeTicks last_animation_time_; |
| 673 | 671 |
| 674 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 672 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 675 }; | 673 }; |
| 676 | 674 |
| 677 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 675 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |