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

Side by Side Diff: ui/aura/test/mus/window_tree_client_private.cc

Issue 2559703003: Converts WindowTreeClientTest to be in terms of aura (Closed)
Patch Set: tweak Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/aura/test/mus/window_tree_client_private.h" 5 #include "ui/aura/test/mus/window_tree_client_private.h"
6 6
7 #include "ui/aura/mus/window_port_mus.h" 7 #include "ui/aura/mus/window_port_mus.h"
8 #include "ui/aura/mus/window_tree_client.h" 8 #include "ui/aura/mus/window_tree_client.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 #include "ui/display/display.h" 10 #include "ui/display/display.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ui::mojom::WindowTree* window_tree, 72 ui::mojom::WindowTree* window_tree,
73 ClientSpecificId client_id) { 73 ClientSpecificId client_id) {
74 tree_client_impl_->WindowTreeConnectionEstablished(window_tree); 74 tree_client_impl_->WindowTreeConnectionEstablished(window_tree);
75 tree_client_impl_->client_id_ = client_id; 75 tree_client_impl_->client_id_ = client_id;
76 } 76 }
77 77
78 bool WindowTreeClientPrivate::HasPointerWatcher() { 78 bool WindowTreeClientPrivate::HasPointerWatcher() {
79 return tree_client_impl_->has_pointer_watcher_; 79 return tree_client_impl_->has_pointer_watcher_;
80 } 80 }
81 81
82 Window* WindowTreeClientPrivate::GetWindowByServerId(Id id) {
83 WindowMus* window = tree_client_impl_->GetWindowByServerId(id);
84 return window ? window->GetWindow() : nullptr;
85 }
86
82 } // namespace aura 87 } // namespace aura
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698