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

Side by Side Diff: components/ui_devtools/views/window_element.cc

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: add README.md Created 3 years, 6 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
« no previous file with comments | « components/ui_devtools/views/window_element.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/ui_devtools/views/window_element.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698