OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/views/corewm/capture_controller.h" | 5 #include "ui/views/corewm/capture_controller.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ui/aura/env.h" | 8 #include "ui/aura/env.h" |
9 #include "ui/aura/test/aura_test_base.h" | 9 #include "ui/aura/test/aura_test_base.h" |
10 #include "ui/aura/test/event_generator.h" | 10 #include "ui/aura/test/event_generator.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 capture_controller_.reset(new corewm::ScopedCaptureClient(root_window())); | 35 capture_controller_.reset(new corewm::ScopedCaptureClient(root_window())); |
36 | 36 |
37 second_host_.reset(aura::WindowTreeHost::Create(gfx::Rect(0, 0, 800, 600))); | 37 second_host_.reset(aura::WindowTreeHost::Create(gfx::Rect(0, 0, 800, 600))); |
38 second_host_->InitHost(); | 38 second_host_->InitHost(); |
39 second_host_->window()->Show(); | 39 second_host_->window()->Show(); |
40 second_host_->SetBounds(gfx::Rect(800, 600)); | 40 second_host_->SetBounds(gfx::Rect(800, 600)); |
41 second_capture_controller_.reset( | 41 second_capture_controller_.reset( |
42 new corewm::ScopedCaptureClient(second_host_->window())); | 42 new corewm::ScopedCaptureClient(second_host_->window())); |
43 | 43 |
44 #if !defined(OS_CHROMEOS) | 44 #if !defined(OS_CHROMEOS) |
45 desktop_position_client_.reset(new DesktopScreenPositionClient()); | 45 desktop_position_client_.reset( |
46 aura::client::SetScreenPositionClient(root_window(), | 46 new DesktopScreenPositionClient(root_window())); |
47 desktop_position_client_.get()); | |
48 | 47 |
49 second_desktop_position_client_.reset(new DesktopScreenPositionClient()); | 48 second_desktop_position_client_.reset( |
50 aura::client::SetScreenPositionClient( | 49 new DesktopScreenPositionClient(second_host_->window())); |
51 second_host_->window(), | |
52 second_desktop_position_client_.get()); | |
53 #endif | 50 #endif |
54 } | 51 } |
55 | 52 |
56 virtual void TearDown() OVERRIDE { | 53 virtual void TearDown() OVERRIDE { |
57 RunAllPendingInMessageLoop(); | 54 RunAllPendingInMessageLoop(); |
58 | 55 |
59 #if !defined(OS_CHROMEOS) | 56 #if !defined(OS_CHROMEOS) |
60 second_desktop_position_client_.reset(); | 57 second_desktop_position_client_.reset(); |
61 #endif | 58 #endif |
62 second_capture_controller_.reset(); | 59 second_capture_controller_.reset(); |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 EXPECT_EQ(static_cast<aura::Window*>(NULL), GetCaptureWindow()); | 159 EXPECT_EQ(static_cast<aura::Window*>(NULL), GetCaptureWindow()); |
163 EXPECT_EQ(static_cast<aura::Window*>(NULL), GetSecondCaptureWindow()); | 160 EXPECT_EQ(static_cast<aura::Window*>(NULL), GetSecondCaptureWindow()); |
164 ui::TouchEvent touch_event( | 161 ui::TouchEvent touch_event( |
165 ui::ET_TOUCH_PRESSED, gfx::Point(), 0, 0, ui::EventTimeForNow(), 1.0f, | 162 ui::ET_TOUCH_PRESSED, gfx::Point(), 0, 0, ui::EventTimeForNow(), 1.0f, |
166 1.0f, 1.0f, 1.0f); | 163 1.0f, 1.0f, 1.0f); |
167 EXPECT_EQ(static_cast<ui::GestureConsumer*>(w2.get()), | 164 EXPECT_EQ(static_cast<ui::GestureConsumer*>(w2.get()), |
168 ui::GestureRecognizer::Get()->GetTouchLockedTarget(touch_event)); | 165 ui::GestureRecognizer::Get()->GetTouchLockedTarget(touch_event)); |
169 } | 166 } |
170 | 167 |
171 } // namespace views | 168 } // namespace views |
OLD | NEW |