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

Side by Side Diff: components/mus/ws/platform_display.cc

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 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 | « components/mus/ws/display_binding.cc ('k') | components/mus/ws/test_utils.cc » ('j') | 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 "components/mus/ws/platform_display.h" 5 #include "components/mus/ws/platform_display.h"
6 6
7 #include "base/numerics/safe_conversions.h" 7 #include "base/numerics/safe_conversions.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "cc/output/compositor_frame.h" 9 #include "cc/output/compositor_frame.h"
10 #include "cc/output/copy_output_request.h" 10 #include "cc/output/copy_output_request.h"
(...skipping 10 matching lines...) Expand all
21 #include "components/mus/ws/server_window.h" 21 #include "components/mus/ws/server_window.h"
22 #include "components/mus/ws/server_window_surface.h" 22 #include "components/mus/ws/server_window_surface.h"
23 #include "components/mus/ws/server_window_surface_manager.h" 23 #include "components/mus/ws/server_window_surface_manager.h"
24 #include "components/mus/ws/window_coordinate_conversions.h" 24 #include "components/mus/ws/window_coordinate_conversions.h"
25 #include "mojo/converters/geometry/geometry_type_converters.h" 25 #include "mojo/converters/geometry/geometry_type_converters.h"
26 #include "mojo/converters/input_events/input_events_type_converters.h" 26 #include "mojo/converters/input_events/input_events_type_converters.h"
27 #include "mojo/converters/input_events/mojo_extended_key_event_data.h" 27 #include "mojo/converters/input_events/mojo_extended_key_event_data.h"
28 #include "mojo/converters/surfaces/surfaces_type_converters.h" 28 #include "mojo/converters/surfaces/surfaces_type_converters.h"
29 #include "mojo/converters/surfaces/surfaces_utils.h" 29 #include "mojo/converters/surfaces/surfaces_utils.h"
30 #include "mojo/converters/transform/transform_type_converters.h" 30 #include "mojo/converters/transform/transform_type_converters.h"
31 #include "mojo/shell/public/cpp/connection.h" 31 #include "services/shell/public/cpp/connection.h"
32 #include "mojo/shell/public/cpp/connector.h" 32 #include "services/shell/public/cpp/connector.h"
33 #include "third_party/skia/include/core/SkXfermode.h" 33 #include "third_party/skia/include/core/SkXfermode.h"
34 #include "ui/base/cursor/cursor_loader.h" 34 #include "ui/base/cursor/cursor_loader.h"
35 #include "ui/events/event.h" 35 #include "ui/events/event.h"
36 #include "ui/events/event_utils.h" 36 #include "ui/events/event_utils.h"
37 #include "ui/gfx/display.h" 37 #include "ui/gfx/display.h"
38 #include "ui/platform_window/platform_ime_controller.h" 38 #include "ui/platform_window/platform_ime_controller.h"
39 #include "ui/platform_window/platform_window.h" 39 #include "ui/platform_window/platform_window.h"
40 40
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 #include "ui/platform_window/win/win_window.h" 42 #include "ui/platform_window/win/win_window.h"
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 432
433 void DefaultPlatformDisplay::RequestCopyOfOutput( 433 void DefaultPlatformDisplay::RequestCopyOfOutput(
434 scoped_ptr<cc::CopyOutputRequest> output_request) { 434 scoped_ptr<cc::CopyOutputRequest> output_request) {
435 if (top_level_display_client_) 435 if (top_level_display_client_)
436 top_level_display_client_->RequestCopyOfOutput(std::move(output_request)); 436 top_level_display_client_->RequestCopyOfOutput(std::move(output_request));
437 } 437 }
438 438
439 } // namespace ws 439 } // namespace ws
440 440
441 } // namespace mus 441 } // namespace mus
OLDNEW
« no previous file with comments | « components/mus/ws/display_binding.cc ('k') | components/mus/ws/test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698