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

Side by Side Diff: components/ui_devtools/devtools/widget_element.cc

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: rebase 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
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/widget_element.h" 5 #include "components/ui_devtools/devtools/widget_element.h"
6 6
7 #include "ash/devtools/ui_element_delegate.h" 7 #include "components/ui_devtools/devtools/ui_element_delegate.h"
8 8
9 namespace ash { 9 namespace ui {
10 namespace devtools { 10 namespace devtools {
11 11
12 WidgetElement::WidgetElement(views::Widget* widget, 12 WidgetElement::WidgetElement(views::Widget* widget,
13 UIElementDelegate* ui_element_delegate, 13 UIElementDelegate* ui_element_delegate,
14 UIElement* parent) 14 UIElement* parent)
15 : UIElement(UIElementType::WIDGET, ui_element_delegate, parent), 15 : UIElement(UIElementType::WIDGET, ui_element_delegate, parent),
16 widget_(widget) { 16 widget_(widget) {
17 widget_->AddRemovalsObserver(this); 17 widget_->AddRemovalsObserver(this);
18 } 18 }
19 19
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 widget_->GetWindowBoundsInScreen()); 63 widget_->GetWindowBoundsInScreen());
64 } 64 }
65 65
66 // static 66 // static
67 views::Widget* WidgetElement::From(UIElement* element) { 67 views::Widget* WidgetElement::From(UIElement* element) {
68 DCHECK_EQ(UIElementType::WIDGET, element->type()); 68 DCHECK_EQ(UIElementType::WIDGET, element->type());
69 return static_cast<WidgetElement*>(element)->widget_; 69 return static_cast<WidgetElement*>(element)->widget_;
70 } 70 }
71 71
72 } // namespace devtools 72 } // namespace devtools
73 } // namespace ash 73 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698