Chromium Code Reviews| Index: ui/aura/mus/window_tree_client.h |
| diff --git a/ui/aura/mus/window_tree_client.h b/ui/aura/mus/window_tree_client.h |
| index 238aece75cc7153da3f2baa2d43372b15d990591..fbb99983a2e53c0cd0a0e94271801fb7c49b5ee2 100644 |
| --- a/ui/aura/mus/window_tree_client.h |
| +++ b/ui/aura/mus/window_tree_client.h |
| @@ -581,6 +581,11 @@ class AURA_EXPORT WindowTreeClient |
| std::unique_ptr<mojo::AssociatedBinding<ui::mojom::WindowManager>> |
| window_manager_internal_; |
| ui::mojom::WindowManagerClientAssociatedPtr window_manager_internal_client_; |
| + // Normally the same as |window_manager_internal_client_|. Tests typically |
| + // run without a Connector, which means this (and |
|
msw
2017/04/26 23:44:46
optional nit: service_manager::Connector
sky
2017/04/27 02:49:41
Done.
|
| + // |window_manager_internal_client_) are null. Tests thata need to test |
|
msw
2017/04/26 23:44:46
nit: '|' inside of ')', and s/thata/that/
sky
2017/04/27 02:49:41
Done.
|
| + // WindowManagerClient set this, but not |window_manager_internal_client_|. |
| + ui::mojom::WindowManagerClient* window_manager_client_ = nullptr; |
| bool has_pointer_watcher_ = false; |