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

Side by Side Diff: ui/aura/test/aura_test_utils.cc

Issue 251743004: aura: Remove WindowTreeHost::QueryMouseLocation(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/aura/test/aura_test_utils.h"
6
7 #include "ui/aura/window_tree_host.h"
8
9 namespace aura {
10
11 WindowTreeHostTestApi::WindowTreeHostTestApi(WindowTreeHost* host)
12 : host_(host) {
13 }
14
15 const gfx::Point&
16 WindowTreeHostTestApi::last_cursor_request_position_in_host() {
17 return host_->last_cursor_request_position_in_host_;
18 }
19
20 } // namespace aura
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698