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

Side by Side Diff: ui/views/focus/focus_traversal_unittest.cc

Issue 2482193003: views_unittests: Fix FocusTraversalTest's BorderView::widget_ deletion. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « no previous file | 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 (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 #include <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "base/run_loop.h" 8 #include "base/run_loop.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 private: 126 private:
127 FocusSearch* focus_search_; 127 FocusSearch* focus_search_;
128 }; 128 };
129 129
130 // BorderView is a view containing a native window with its own view hierarchy. 130 // BorderView is a view containing a native window with its own view hierarchy.
131 // It is interesting to test focus traversal from a view hierarchy to an inner 131 // It is interesting to test focus traversal from a view hierarchy to an inner
132 // view hierarchy. 132 // view hierarchy.
133 class BorderView : public NativeViewHost { 133 class BorderView : public NativeViewHost {
134 public: 134 public:
135 explicit BorderView(View* child) : child_(child), widget_(NULL) { 135 explicit BorderView(View* child) : child_(child) {
136 DCHECK(child); 136 DCHECK(child);
137 SetFocusBehavior(FocusBehavior::NEVER); 137 SetFocusBehavior(FocusBehavior::NEVER);
138 } 138 }
139 139
140 ~BorderView() override {
141 // TODO: ifdef should not be necessary. NativeWidgetMac has different
142 // ownership semantics: http://crbug.com/663418.
143 #if !defined(OS_MACOSX)
144 if (widget_)
145 widget_->CloseNow();
146 #endif
147 }
148
149 virtual internal::RootView* GetContentsRootView() { 140 virtual internal::RootView* GetContentsRootView() {
150 return static_cast<internal::RootView*>(widget_->GetRootView()); 141 return static_cast<internal::RootView*>(widget_->GetRootView());
151 } 142 }
152 143
153 FocusTraversable* GetFocusTraversable() override { 144 FocusTraversable* GetFocusTraversable() override {
154 return static_cast<internal::RootView*>(widget_->GetRootView()); 145 return static_cast<internal::RootView*>(widget_->GetRootView());
155 } 146 }
156 147
157 void ViewHierarchyChanged( 148 void ViewHierarchyChanged(
158 const ViewHierarchyChangedDetails& details) override { 149 const ViewHierarchyChangedDetails& details) override {
159 NativeViewHost::ViewHierarchyChanged(details); 150 NativeViewHost::ViewHierarchyChanged(details);
160 151
161 if (details.child == this && details.is_add) { 152 if (details.child == this && details.is_add) {
162 if (!widget_) { 153 if (!widget_) {
163 widget_ = new Widget; 154 widget_.reset(new Widget);
sky 2016/11/10 04:16:10 Use MakeUnique (see threads on chromium-dev for de
Patti Lor 2016/11/10 05:01:56 Done, thanks for the FYI!
164 Widget::InitParams params(Widget::InitParams::TYPE_CONTROL); 155 Widget::InitParams params(Widget::InitParams::TYPE_CONTROL);
165 params.parent = details.parent->GetWidget()->GetNativeView(); 156 params.parent = details.parent->GetWidget()->GetNativeView();
157 params.ownership = Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
166 widget_->Init(params); 158 widget_->Init(params);
167 widget_->SetFocusTraversableParentView(this); 159 widget_->SetFocusTraversableParentView(this);
168 widget_->SetContentsView(child_); 160 widget_->SetContentsView(child_);
169 } 161 }
170 162
171 // We have been added to a view hierarchy, attach the native view. 163 // We have been added to a view hierarchy, attach the native view.
172 Attach(widget_->GetNativeView()); 164 Attach(widget_->GetNativeView());
173 // Also update the FocusTraversable parent so the focus traversal works. 165 // Also update the FocusTraversable parent so the focus traversal works.
174 static_cast<internal::RootView*>(widget_->GetRootView())-> 166 static_cast<internal::RootView*>(widget_->GetRootView())->
175 SetFocusTraversableParent(GetWidget()->GetFocusTraversable()); 167 SetFocusTraversableParent(GetWidget()->GetFocusTraversable());
176 } 168 }
177 } 169 }
178 170
179 private: 171 private:
180 View* child_; 172 View* child_;
181 Widget* widget_; 173 std::unique_ptr<Widget> widget_;
182 174
183 DISALLOW_COPY_AND_ASSIGN(BorderView); 175 DISALLOW_COPY_AND_ASSIGN(BorderView);
184 }; 176 };
185 177
186 } // namespace 178 } // namespace
187 179
188 class FocusTraversalTest : public FocusManagerTest { 180 class FocusTraversalTest : public FocusManagerTest {
189 public: 181 public:
190 ~FocusTraversalTest() override; 182 ~FocusTraversalTest() override;
191 183
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 GetFocusManager()->AdvanceFocus(false); 878 GetFocusManager()->AdvanceFocus(false);
887 EXPECT_FALSE(GetFocusManager()->GetFocusedView()); 879 EXPECT_FALSE(GetFocusManager()->GetFocusedView());
888 880
889 // Advance backwards from the root node. 881 // Advance backwards from the root node.
890 GetFocusManager()->ClearFocus(); 882 GetFocusManager()->ClearFocus();
891 GetFocusManager()->AdvanceFocus(true); 883 GetFocusManager()->AdvanceFocus(true);
892 EXPECT_FALSE(GetFocusManager()->GetFocusedView()); 884 EXPECT_FALSE(GetFocusManager()->GetFocusedView());
893 } 885 }
894 886
895 } // namespace views 887 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698