Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 "services/ui/public/cpp/window_tree_client.h" | 5 #include "services/ui/public/cpp/window_tree_client.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | |
|
mfomitchev
2016/11/18 17:36:24
don't remove this blank line
thanhph
2016/11/18 19:15:44
Done.
| |
| 9 #include <string> | 8 #include <string> |
| 10 #include <utility> | 9 #include <utility> |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "base/bind.h" | 12 #include "base/bind.h" |
| 14 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 15 #include "services/service_manager/public/cpp/connector.h" | 14 #include "services/service_manager/public/cpp/connector.h" |
| 16 #include "services/ui/common/util.h" | 15 #include "services/ui/common/util.h" |
| 17 #include "services/ui/public/cpp/in_flight_change.h" | 16 #include "services/ui/public/cpp/in_flight_change.h" |
| 18 #include "services/ui/public/cpp/input_event_handler.h" | 17 #include "services/ui/public/cpp/input_event_handler.h" |
| (...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1438 Window* window, | 1437 Window* window, |
| 1439 const gfx::Vector2d& offset, | 1438 const gfx::Vector2d& offset, |
| 1440 const gfx::Insets& hit_area) { | 1439 const gfx::Insets& hit_area) { |
| 1441 if (window_manager_internal_client_) { | 1440 if (window_manager_internal_client_) { |
| 1442 window_manager_internal_client_->SetUnderlaySurfaceOffsetAndExtendedHitArea( | 1441 window_manager_internal_client_->SetUnderlaySurfaceOffsetAndExtendedHitArea( |
| 1443 server_id(window), offset.x(), offset.y(), hit_area); | 1442 server_id(window), offset.x(), offset.y(), hit_area); |
| 1444 } | 1443 } |
| 1445 } | 1444 } |
| 1446 | 1445 |
| 1447 } // namespace ui | 1446 } // namespace ui |
| OLD | NEW |