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

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

Issue 2843193002: chromeos: fix focus for mushrome (Closed)
Patch Set: feedback Created 3 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
« no previous file with comments | « ui/aura/test/mus/window_tree_client_private.h ('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 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/mus/window_tree_host_mus_init_params.h" 9 #include "ui/aura/mus/window_tree_host_mus_init_params.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 return tree_client_impl_->CreateInitParamsForNewDisplay(); 92 return tree_client_impl_->CreateInitParamsForNewDisplay();
93 } 93 }
94 94
95 void WindowTreeClientPrivate::SetTreeAndClientId( 95 void WindowTreeClientPrivate::SetTreeAndClientId(
96 ui::mojom::WindowTree* window_tree, 96 ui::mojom::WindowTree* window_tree,
97 ClientSpecificId client_id) { 97 ClientSpecificId client_id) {
98 tree_client_impl_->WindowTreeConnectionEstablished(window_tree); 98 tree_client_impl_->WindowTreeConnectionEstablished(window_tree);
99 tree_client_impl_->client_id_ = client_id; 99 tree_client_impl_->client_id_ = client_id;
100 } 100 }
101 101
102 void WindowTreeClientPrivate::SetWindowManagerClient(
103 ui::mojom::WindowManagerClient* client) {
104 tree_client_impl_->window_manager_client_ = client;
105 }
106
102 bool WindowTreeClientPrivate::HasPointerWatcher() { 107 bool WindowTreeClientPrivate::HasPointerWatcher() {
103 return tree_client_impl_->has_pointer_watcher_; 108 return tree_client_impl_->has_pointer_watcher_;
104 } 109 }
105 110
106 Window* WindowTreeClientPrivate::GetWindowByServerId(Id id) { 111 Window* WindowTreeClientPrivate::GetWindowByServerId(Id id) {
107 WindowMus* window = tree_client_impl_->GetWindowByServerId(id); 112 WindowMus* window = tree_client_impl_->GetWindowByServerId(id);
108 return window ? window->GetWindow() : nullptr; 113 return window ? window->GetWindow() : nullptr;
109 } 114 }
110 115
111 } // namespace aura 116 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/test/mus/window_tree_client_private.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698