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

Side by Side Diff: ui/wm/test/wm_test_helper.cc

Issue 1871253002: aura: Require explicit ownership of the Env instance. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot.merge Created 4 years, 8 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 | « ui/wm/test/run_all_unittests.cc ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ui/wm/test/wm_test_helper.h" 5 #include "ui/wm/test/wm_test_helper.h"
6 6
7 #include "ui/aura/client/default_capture_client.h" 7 #include "ui/aura/client/default_capture_client.h"
8 #include "ui/aura/env.h" 8 #include "ui/aura/env.h"
9 #include "ui/aura/test/test_focus_client.h" 9 #include "ui/aura/test/test_focus_client.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
11 #include "ui/wm/core/compound_event_filter.h" 11 #include "ui/wm/core/compound_event_filter.h"
12 #include "ui/wm/core/default_activation_client.h" 12 #include "ui/wm/core/default_activation_client.h"
13 13
14 namespace wm { 14 namespace wm {
15 15
16 WMTestHelper::WMTestHelper(const gfx::Size& default_window_size, 16 WMTestHelper::WMTestHelper(const gfx::Size& default_window_size,
17 ui::ContextFactory* context_factory) { 17 ui::ContextFactory* context_factory) {
18 aura::Env::CreateInstance(true);
19 aura::Env::GetInstance()->set_context_factory(context_factory); 18 aura::Env::GetInstance()->set_context_factory(context_factory);
20 host_.reset(aura::WindowTreeHost::Create(gfx::Rect(default_window_size))); 19 host_.reset(aura::WindowTreeHost::Create(gfx::Rect(default_window_size)));
21 host_->InitHost(); 20 host_->InitHost();
22 aura::client::SetWindowTreeClient(host_->window(), this); 21 aura::client::SetWindowTreeClient(host_->window(), this);
23 22
24 focus_client_.reset(new aura::test::TestFocusClient); 23 focus_client_.reset(new aura::test::TestFocusClient);
25 aura::client::SetFocusClient(host_->window(), focus_client_.get()); 24 aura::client::SetFocusClient(host_->window(), focus_client_.get());
26 25
27 root_window_event_filter_.reset(new wm::CompoundEventFilter); 26 root_window_event_filter_.reset(new wm::CompoundEventFilter);
28 host_->window()->AddPreTargetHandler(root_window_event_filter_.get()); 27 host_->window()->AddPreTargetHandler(root_window_event_filter_.get());
29 28
30 new wm::DefaultActivationClient(host_->window()); 29 new wm::DefaultActivationClient(host_->window());
31 30
32 capture_client_.reset( 31 capture_client_.reset(
33 new aura::client::DefaultCaptureClient(host_->window())); 32 new aura::client::DefaultCaptureClient(host_->window()));
34 } 33 }
35 34
36 WMTestHelper::~WMTestHelper() { 35 WMTestHelper::~WMTestHelper() {
37 } 36 }
38 37
39 aura::Window* WMTestHelper::GetDefaultParent(aura::Window* context, 38 aura::Window* WMTestHelper::GetDefaultParent(aura::Window* context,
40 aura::Window* window, 39 aura::Window* window,
41 const gfx::Rect& bounds) { 40 const gfx::Rect& bounds) {
42 return host_->window(); 41 return host_->window();
43 } 42 }
44 43
45 } // namespace wm 44 } // namespace wm
OLDNEW
« no previous file with comments | « ui/wm/test/run_all_unittests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698