| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 ASH_DEVTOOLS_WINDOW_ELEMENT_H_ | 5 #ifndef COMPONENTS_UI_DEVTOOLS_VIEWS_WINDOW_ELEMENT_H_ |
| 6 #define ASH_DEVTOOLS_WINDOW_ELEMENT_H_ | 6 #define COMPONENTS_UI_DEVTOOLS_VIEWS_WINDOW_ELEMENT_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | |
| 9 #include "ash/devtools/ui_element.h" | |
| 10 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/ui_devtools/views/ui_element.h" |
| 11 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| 12 #include "ui/aura/window_observer.h" | 11 #include "ui/aura/window_observer.h" |
| 13 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
| 14 | 13 |
| 15 namespace ash { | 14 namespace ui_devtools { |
| 16 namespace devtools { | |
| 17 | 15 |
| 18 class ASH_EXPORT WindowElement : public aura::WindowObserver, public UIElement { | 16 class WindowElement : public aura::WindowObserver, public UIElement { |
| 19 public: | 17 public: |
| 20 WindowElement(aura::Window* window, | 18 WindowElement(aura::Window* window, |
| 21 UIElementDelegate* ui_element_delegate, | 19 UIElementDelegate* ui_element_delegate, |
| 22 UIElement* parent); | 20 UIElement* parent); |
| 23 ~WindowElement() override; | 21 ~WindowElement() override; |
| 24 aura::Window* window() const { return window_; }; | 22 aura::Window* window() const { return window_; }; |
| 25 | 23 |
| 26 // WindowObserver: | 24 // WindowObserver: |
| 27 void OnWindowHierarchyChanging( | 25 void OnWindowHierarchyChanging( |
| 28 const aura::WindowObserver::HierarchyChangeParams& params) override; | 26 const aura::WindowObserver::HierarchyChangeParams& params) override; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 41 std::pair<aura::Window*, gfx::Rect> GetNodeWindowAndBounds() const override; | 39 std::pair<aura::Window*, gfx::Rect> GetNodeWindowAndBounds() const override; |
| 42 | 40 |
| 43 static aura::Window* From(UIElement* element); | 41 static aura::Window* From(UIElement* element); |
| 44 | 42 |
| 45 private: | 43 private: |
| 46 aura::Window* window_; | 44 aura::Window* window_; |
| 47 | 45 |
| 48 DISALLOW_COPY_AND_ASSIGN(WindowElement); | 46 DISALLOW_COPY_AND_ASSIGN(WindowElement); |
| 49 }; | 47 }; |
| 50 | 48 |
| 51 } // namespace devtools | 49 } // namespace ui_devtools |
| 52 } // namespace ash | |
| 53 | 50 |
| 54 #endif // ASH_DEVTOOLS_WINDOW_ELEMENT_H_ | 51 #endif // COMPONENTS_UI_DEVTOOLS_VIEWS_WINDOW_ELEMENT_H_ |
| OLD | NEW |