| 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 #include "ash/devtools/window_element.h" | 5 #include "components/ui_devtools/views/window_element.h" |
| 6 | 6 |
| 7 #include "ash/devtools/ui_element_delegate.h" | 7 #include "components/ui_devtools/views/ui_element_delegate.h" |
| 8 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ui_devtools { |
| 11 namespace devtools { | |
| 12 namespace { | 11 namespace { |
| 13 | 12 |
| 14 int GetIndexOfChildInParent(aura::Window* window) { | 13 int GetIndexOfChildInParent(aura::Window* window) { |
| 15 const aura::Window::Windows& siblings = window->parent()->children(); | 14 const aura::Window::Windows& siblings = window->parent()->children(); |
| 16 auto it = std::find(siblings.begin(), siblings.end(), window); | 15 auto it = std::find(siblings.begin(), siblings.end(), window); |
| 17 DCHECK(it != siblings.end()); | 16 DCHECK(it != siblings.end()); |
| 18 return std::distance(siblings.begin(), it); | 17 return std::distance(siblings.begin(), it); |
| 19 } | 18 } |
| 20 | 19 |
| 21 } // namespace | 20 } // namespace |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 const { | 88 const { |
| 90 return std::make_pair(window_, window_->GetBoundsInScreen()); | 89 return std::make_pair(window_, window_->GetBoundsInScreen()); |
| 91 } | 90 } |
| 92 | 91 |
| 93 // static | 92 // static |
| 94 aura::Window* WindowElement::From(UIElement* element) { | 93 aura::Window* WindowElement::From(UIElement* element) { |
| 95 DCHECK_EQ(UIElementType::WINDOW, element->type()); | 94 DCHECK_EQ(UIElementType::WINDOW, element->type()); |
| 96 return static_cast<WindowElement*>(element)->window_; | 95 return static_cast<WindowElement*>(element)->window_; |
| 97 } | 96 } |
| 98 | 97 |
| 99 } // namespace devtools | 98 } // namespace ui_devtools |
| 100 } // namespace ash | |
| OLD | NEW |