| 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 gfx::Size GetMinimumSize() const override; | 417 gfx::Size GetMinimumSize() const override; |
| 418 | 418 |
| 419 // InfoBarContainerDelegate: | 419 // InfoBarContainerDelegate: |
| 420 SkColor GetInfoBarSeparatorColor() const override; | 420 SkColor GetInfoBarSeparatorColor() const override; |
| 421 void InfoBarContainerStateChanged(bool is_animating) override; | 421 void InfoBarContainerStateChanged(bool is_animating) override; |
| 422 bool DrawInfoBarArrows(int* x) const override; | 422 bool DrawInfoBarArrows(int* x) const override; |
| 423 | 423 |
| 424 // Overridden from views::View: | 424 // Overridden from views::View: |
| 425 const char* GetClassName() const override; | 425 const char* GetClassName() const override; |
| 426 void Layout() override; | 426 void Layout() override; |
| 427 void PaintChildren(const PaintContext& context) override; | 427 void PaintChildren(const ui::PaintContext& context) override; |
| 428 void ViewHierarchyChanged( | 428 void ViewHierarchyChanged( |
| 429 const ViewHierarchyChangedDetails& details) override; | 429 const ViewHierarchyChangedDetails& details) override; |
| 430 void ChildPreferredSizeChanged(View* child) override; | 430 void ChildPreferredSizeChanged(View* child) override; |
| 431 void GetAccessibleState(ui::AXViewState* state) override; | 431 void GetAccessibleState(ui::AXViewState* state) override; |
| 432 void OnNativeThemeChanged(const ui::NativeTheme* theme) override; | 432 void OnNativeThemeChanged(const ui::NativeTheme* theme) override; |
| 433 | 433 |
| 434 // Overridden from ui::AcceleratorTarget: | 434 // Overridden from ui::AcceleratorTarget: |
| 435 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; | 435 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
| 436 | 436 |
| 437 // OmniboxPopupModelObserver overrides | 437 // OmniboxPopupModelObserver overrides |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; | 709 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; |
| 710 | 710 |
| 711 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 711 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 712 | 712 |
| 713 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 713 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 714 | 714 |
| 715 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 715 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 716 }; | 716 }; |
| 717 | 717 |
| 718 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 718 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |