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

Side by Side Diff: ui/views/corewm/desktop_capture_controller_unittest.cc

Issue 196213004: Allows menu host windows to be enumerated in DragTargetWindowFinder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implements menu XID caching and dispatches mouse drags in a posted task (test) Created 6 years, 9 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 (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/wm/core/capture_controller.h" 5 #include "ui/wm/core/capture_controller.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "ui/aura/env.h" 9 #include "ui/aura/env.h"
10 #include "ui/aura/test/event_generator.h" 10 #include "ui/aura/test/event_generator.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 EXPECT_FALSE(w1->HasCapture()); 94 EXPECT_FALSE(w1->HasCapture());
95 aura::WindowEventDispatcher* w1_dispatcher = 95 aura::WindowEventDispatcher* w1_dispatcher =
96 w1->GetNativeView()->GetHost()->dispatcher(); 96 w1->GetNativeView()->GetHost()->dispatcher();
97 EXPECT_TRUE(w1_dispatcher->mouse_pressed_handler() != NULL); 97 EXPECT_TRUE(w1_dispatcher->mouse_pressed_handler() != NULL);
98 EXPECT_TRUE(w1_dispatcher->mouse_moved_handler() != NULL); 98 EXPECT_TRUE(w1_dispatcher->mouse_moved_handler() != NULL);
99 w2->SetCapture(w2->GetRootView()); 99 w2->SetCapture(w2->GetRootView());
100 EXPECT_TRUE(w2->HasCapture()); 100 EXPECT_TRUE(w2->HasCapture());
101 EXPECT_TRUE(w1_dispatcher->mouse_pressed_handler() == NULL); 101 EXPECT_TRUE(w1_dispatcher->mouse_pressed_handler() == NULL);
102 EXPECT_TRUE(w1_dispatcher->mouse_moved_handler() == NULL); 102 EXPECT_TRUE(w1_dispatcher->mouse_moved_handler() == NULL);
103 w2->ReleaseCapture(); 103 w2->ReleaseCapture();
104 RunPendingMessages();
varkha 2014/03/26 00:15:53 This test was failing because all the windows were
sadrul 2014/03/26 18:01:07 I believe some tests run this in the TearDown() ov
varkha 2014/03/27 04:48:13 The problem is that w1/w2 get destroyed when exiti
sadrul 2014/03/27 19:13:46 I see. That sounds like a bug. It would be a good
varkha 2014/03/27 20:05:29 We discussed this offline a bit. If we do not call
104 } 105 }
105 106
106 // Tests aura::Window capture and whether gesture events are sent to the window 107 // Tests aura::Window capture and whether gesture events are sent to the window
107 // which has capture. 108 // which has capture.
108 // The test case creates two visible widgets and sets capture to the underlying 109 // The test case creates two visible widgets and sets capture to the underlying
109 // aura::Windows one by one. It then sends a gesture event and validates whether 110 // aura::Windows one by one. It then sends a gesture event and validates whether
110 // the window which had capture receives the gesture. 111 // the window which had capture receives the gesture.
111 // TODO(sky): move this test, it should be part of ScopedCaptureClient tests. 112 // TODO(sky): move this test, it should be part of ScopedCaptureClient tests.
112 TEST_F(DesktopCaptureControllerTest, CaptureWindowInputEventTest) { 113 TEST_F(DesktopCaptureControllerTest, CaptureWindowInputEventTest) {
113 scoped_ptr<aura::client::ScreenPositionClient> desktop_position_client1; 114 scoped_ptr<aura::client::ScreenPositionClient> desktop_position_client1;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 193
193 EXPECT_TRUE(v2->received_gesture_event()); 194 EXPECT_TRUE(v2->received_gesture_event());
194 EXPECT_FALSE(v1->received_gesture_event()); 195 EXPECT_FALSE(v1->received_gesture_event());
195 196
196 widget1->CloseNow(); 197 widget1->CloseNow();
197 widget2->CloseNow(); 198 widget2->CloseNow();
198 RunPendingMessages(); 199 RunPendingMessages();
199 } 200 }
200 201
201 } // namespace views 202 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698