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 <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 gfx::Size GetMinimumSize() const override; | 428 gfx::Size GetMinimumSize() const override; |
429 | 429 |
430 // InfoBarContainerDelegate: | 430 // InfoBarContainerDelegate: |
431 SkColor GetInfoBarSeparatorColor() const override; | 431 SkColor GetInfoBarSeparatorColor() const override; |
432 void InfoBarContainerStateChanged(bool is_animating) override; | 432 void InfoBarContainerStateChanged(bool is_animating) override; |
433 bool DrawInfoBarArrows(int* x) const override; | 433 bool DrawInfoBarArrows(int* x) const override; |
434 | 434 |
435 // Overridden from views::View: | 435 // Overridden from views::View: |
436 const char* GetClassName() const override; | 436 const char* GetClassName() const override; |
437 void Layout() override; | 437 void Layout() override; |
| 438 void OnGestureEvent(ui::GestureEvent* event) override; |
438 void ViewHierarchyChanged( | 439 void ViewHierarchyChanged( |
439 const ViewHierarchyChangedDetails& details) override; | 440 const ViewHierarchyChangedDetails& details) override; |
440 void ChildPreferredSizeChanged(View* child) override; | 441 void ChildPreferredSizeChanged(View* child) override; |
441 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; | 442 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; |
442 void OnThemeChanged() override; | 443 void OnThemeChanged() override; |
443 void OnNativeThemeChanged(const ui::NativeTheme* theme) override; | 444 void OnNativeThemeChanged(const ui::NativeTheme* theme) override; |
444 | 445 |
445 // Overridden from ui::AcceleratorTarget: | 446 // Overridden from ui::AcceleratorTarget: |
446 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; | 447 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
447 | 448 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 // The class that registers for keyboard shortcuts for extension commands. | 711 // The class that registers for keyboard shortcuts for extension commands. |
711 std::unique_ptr<ExtensionKeybindingRegistryViews> | 712 std::unique_ptr<ExtensionKeybindingRegistryViews> |
712 extension_keybinding_registry_; | 713 extension_keybinding_registry_; |
713 | 714 |
714 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 715 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
715 | 716 |
716 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 717 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
717 }; | 718 }; |
718 | 719 |
719 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 720 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |