| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/views/mus/window_manager_connection.h" | 5 #include "ui/views/mus/window_manager_connection.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
| 12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
| 13 #include "base/threading/thread_local.h" | 13 #include "base/threading/thread_local.h" |
| 14 #include "services/service_manager/public/cpp/connection.h" | 14 #include "services/service_manager/public/cpp/connection.h" |
| 15 #include "services/service_manager/public/cpp/connector.h" | 15 #include "services/service_manager/public/cpp/connector.h" |
| 16 #include "services/ui/public/cpp/gpu_service.h" | 16 #include "services/ui/public/cpp/gpu/gpu_service.h" |
| 17 #include "services/ui/public/cpp/property_type_converters.h" | 17 #include "services/ui/public/cpp/property_type_converters.h" |
| 18 #include "services/ui/public/cpp/window.h" | 18 #include "services/ui/public/cpp/window.h" |
| 19 #include "services/ui/public/cpp/window_property.h" | 19 #include "services/ui/public/cpp/window_property.h" |
| 20 #include "services/ui/public/cpp/window_tree_client.h" | 20 #include "services/ui/public/cpp/window_tree_client.h" |
| 21 #include "services/ui/public/interfaces/event_matcher.mojom.h" | 21 #include "services/ui/public/interfaces/event_matcher.mojom.h" |
| 22 #include "services/ui/public/interfaces/window_tree.mojom.h" | 22 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 23 #include "ui/aura/env.h" | 23 #include "ui/aura/env.h" |
| 24 #include "ui/aura/mus/os_exchange_data_provider_mus.h" | 24 #include "ui/aura/mus/os_exchange_data_provider_mus.h" |
| 25 #include "ui/views/mus/clipboard_mus.h" | 25 #include "ui/views/mus/clipboard_mus.h" |
| 26 #include "ui/views/mus/native_widget_mus.h" | 26 #include "ui/views/mus/native_widget_mus.h" |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 const gfx::Point& point) { | 225 const gfx::Point& point) { |
| 226 return GetAuraWindowFromUiWindow(GetUiWindowAtScreenPoint(point)); | 226 return GetAuraWindowFromUiWindow(GetUiWindowAtScreenPoint(point)); |
| 227 } | 227 } |
| 228 | 228 |
| 229 std::unique_ptr<OSExchangeData::Provider> | 229 std::unique_ptr<OSExchangeData::Provider> |
| 230 WindowManagerConnection::BuildProvider() { | 230 WindowManagerConnection::BuildProvider() { |
| 231 return base::MakeUnique<aura::OSExchangeDataProviderMus>(); | 231 return base::MakeUnique<aura::OSExchangeDataProviderMus>(); |
| 232 } | 232 } |
| 233 | 233 |
| 234 } // namespace views | 234 } // namespace views |
| OLD | NEW |