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

Side by Side Diff: ui/aura/mus/window_tree_client.cc

Issue 2610103003: Getting rid of SurfaceIdHandler as it is no longer needed. (Closed)
Patch Set: Created 3 years, 11 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/mus/window_port_mus.cc ('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 2014 The Chromium Authors. All rights reserved. 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 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/mus/window_tree_client.h" 5 #include "ui/aura/mus/window_tree_client.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 11 matching lines...) Expand all
22 #include "ui/aura/client/aura_constants.h" 22 #include "ui/aura/client/aura_constants.h"
23 #include "ui/aura/client/drag_drop_client.h" 23 #include "ui/aura/client/drag_drop_client.h"
24 #include "ui/aura/client/transient_window_client.h" 24 #include "ui/aura/client/transient_window_client.h"
25 #include "ui/aura/mus/capture_synchronizer.h" 25 #include "ui/aura/mus/capture_synchronizer.h"
26 #include "ui/aura/mus/drag_drop_controller_mus.h" 26 #include "ui/aura/mus/drag_drop_controller_mus.h"
27 #include "ui/aura/mus/focus_synchronizer.h" 27 #include "ui/aura/mus/focus_synchronizer.h"
28 #include "ui/aura/mus/in_flight_change.h" 28 #include "ui/aura/mus/in_flight_change.h"
29 #include "ui/aura/mus/input_method_mus.h" 29 #include "ui/aura/mus/input_method_mus.h"
30 #include "ui/aura/mus/property_converter.h" 30 #include "ui/aura/mus/property_converter.h"
31 #include "ui/aura/mus/property_utils.h" 31 #include "ui/aura/mus/property_utils.h"
32 #include "ui/aura/mus/surface_id_handler.h"
33 #include "ui/aura/mus/window_manager_delegate.h" 32 #include "ui/aura/mus/window_manager_delegate.h"
34 #include "ui/aura/mus/window_mus.h" 33 #include "ui/aura/mus/window_mus.h"
35 #include "ui/aura/mus/window_port_mus.h" 34 #include "ui/aura/mus/window_port_mus.h"
36 #include "ui/aura/mus/window_tree_client_delegate.h" 35 #include "ui/aura/mus/window_tree_client_delegate.h"
37 #include "ui/aura/mus/window_tree_client_observer.h" 36 #include "ui/aura/mus/window_tree_client_observer.h"
38 #include "ui/aura/mus/window_tree_host_mus.h" 37 #include "ui/aura/mus/window_tree_host_mus.h"
39 #include "ui/aura/window.h" 38 #include "ui/aura/window.h"
40 #include "ui/aura/window_delegate.h" 39 #include "ui/aura/window_delegate.h"
41 #include "ui/aura/window_tracker.h" 40 #include "ui/aura/window_tracker.h"
42 #include "ui/base/ui_base_types.h" 41 #include "ui/base/ui_base_types.h"
(...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after
1692 return ScheduleInFlightChange(base::MakeUnique<InFlightCaptureChange>( 1691 return ScheduleInFlightChange(base::MakeUnique<InFlightCaptureChange>(
1693 this, capture_synchronizer_.get(), window)); 1692 this, capture_synchronizer_.get(), window));
1694 } 1693 }
1695 1694
1696 uint32_t WindowTreeClient::CreateChangeIdForFocus(WindowMus* window) { 1695 uint32_t WindowTreeClient::CreateChangeIdForFocus(WindowMus* window) {
1697 return ScheduleInFlightChange(base::MakeUnique<InFlightFocusChange>( 1696 return ScheduleInFlightChange(base::MakeUnique<InFlightFocusChange>(
1698 this, focus_synchronizer_.get(), window)); 1697 this, focus_synchronizer_.get(), window));
1699 } 1698 }
1700 1699
1701 } // namespace aura 1700 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/mus/window_port_mus.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698