OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 // Overridden from views::ClientView: | 421 // Overridden from views::ClientView: |
422 virtual bool CanClose() OVERRIDE; | 422 virtual bool CanClose() OVERRIDE; |
423 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 423 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
424 virtual gfx::Size GetMinimumSize() OVERRIDE; | 424 virtual gfx::Size GetMinimumSize() OVERRIDE; |
425 | 425 |
426 // ImmersiveModeController::Delegate overrides: | 426 // ImmersiveModeController::Delegate overrides: |
427 virtual BookmarkBarView* GetBookmarkBar() OVERRIDE; | 427 virtual BookmarkBarView* GetBookmarkBar() OVERRIDE; |
428 virtual FullscreenController* GetFullscreenController() OVERRIDE; | 428 virtual FullscreenController* GetFullscreenController() OVERRIDE; |
429 virtual void FullscreenStateChanged() OVERRIDE; | 429 virtual void FullscreenStateChanged() OVERRIDE; |
430 virtual void SetImmersiveStyle(bool immersive) OVERRIDE; | 430 virtual void SetImmersiveStyle(bool immersive) OVERRIDE; |
431 virtual content::WebContents* GetWebContents() OVERRIDE; | |
432 | 431 |
433 // InfoBarContainer::Delegate overrides | 432 // InfoBarContainer::Delegate overrides |
434 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; | 433 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; |
435 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; | 434 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; |
436 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; | 435 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; |
437 | 436 |
438 // views::SingleSplitViewListener overrides: | 437 // views::SingleSplitViewListener overrides: |
439 virtual bool SplitHandleMoved(views::SingleSplitView* sender) OVERRIDE; | 438 virtual bool SplitHandleMoved(views::SingleSplitView* sender) OVERRIDE; |
440 | 439 |
441 // gfx::SysColorChangeListener overrides: | 440 // gfx::SysColorChangeListener overrides: |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; | 745 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
747 | 746 |
748 gfx::ScopedSysColorChangeListener color_change_listener_; | 747 gfx::ScopedSysColorChangeListener color_change_listener_; |
749 | 748 |
750 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 749 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
751 | 750 |
752 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 751 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
753 }; | 752 }; |
754 | 753 |
755 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 754 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |