Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Update tests Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 SkColor GetInfoBarSeparatorColor() const override; 426 SkColor GetInfoBarSeparatorColor() const override;
427 void InfoBarContainerStateChanged(bool is_animating) override; 427 void InfoBarContainerStateChanged(bool is_animating) override;
428 bool DrawInfoBarArrows(int* x) const override; 428 bool DrawInfoBarArrows(int* x) const override;
429 429
430 // Overridden from views::View: 430 // Overridden from views::View:
431 const char* GetClassName() const override; 431 const char* GetClassName() const override;
432 void Layout() override; 432 void Layout() override;
433 void OnGestureEvent(ui::GestureEvent* event) override; 433 void OnGestureEvent(ui::GestureEvent* event) override;
434 void ViewHierarchyChanged( 434 void ViewHierarchyChanged(
435 const ViewHierarchyChangedDetails& details) override; 435 const ViewHierarchyChangedDetails& details) override;
436 void PaintChildren(const ui::PaintContext& context) override; 436 void PaintChildren(const ui::PaintInfo& paint_info) override;
437 void ChildPreferredSizeChanged(View* child) override; 437 void ChildPreferredSizeChanged(View* child) override;
438 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; 438 void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
439 void OnThemeChanged() override; 439 void OnThemeChanged() override;
440 440
441 // Overridden from ui::AcceleratorTarget: 441 // Overridden from ui::AcceleratorTarget:
442 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; 442 bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
443 443
444 // OmniboxPopupModelObserver overrides 444 // OmniboxPopupModelObserver overrides
445 void OnOmniboxPopupShownOrHidden() override; 445 void OnOmniboxPopupShownOrHidden() override;
446 446
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 711
712 std::unique_ptr<FullscreenControlHost> fullscreen_control_host_; 712 std::unique_ptr<FullscreenControlHost> fullscreen_control_host_;
713 713
714 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_{ 714 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_{
715 this}; 715 this};
716 716
717 DISALLOW_COPY_AND_ASSIGN(BrowserView); 717 DISALLOW_COPY_AND_ASSIGN(BrowserView);
718 }; 718 };
719 719
720 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 720 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698