| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/window_tree_host_ozone.h" | 5 #include "ui/aura/window_tree_host_ozone.h" |
| 6 | 6 |
| 7 #include "ui/aura/window_event_dispatcher.h" | 7 #include "ui/aura/window_event_dispatcher.h" |
| 8 #include "ui/base/cursor/ozone/cursor_factory_ozone.h" | 8 #include "ui/base/cursor/ozone/cursor_factory_ozone.h" |
| 9 #include "ui/events/ozone/event_factory_ozone.h" | 9 #include "ui/events/ozone/event_factory_ozone.h" |
| 10 #include "ui/events/platform/platform_event_source.h" | 10 #include "ui/events/platform/platform_event_source.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 | 77 |
| 78 gfx::Point WindowTreeHostOzone::GetLocationOnNativeScreen() const { | 78 gfx::Point WindowTreeHostOzone::GetLocationOnNativeScreen() const { |
| 79 return bounds_.origin(); | 79 return bounds_.origin(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 void WindowTreeHostOzone::SetCapture() { NOTIMPLEMENTED(); } | 82 void WindowTreeHostOzone::SetCapture() { NOTIMPLEMENTED(); } |
| 83 | 83 |
| 84 void WindowTreeHostOzone::ReleaseCapture() { NOTIMPLEMENTED(); } | 84 void WindowTreeHostOzone::ReleaseCapture() { NOTIMPLEMENTED(); } |
| 85 | 85 |
| 86 bool WindowTreeHostOzone::QueryMouseLocation(gfx::Point* location_return) { | |
| 87 NOTIMPLEMENTED(); | |
| 88 return false; | |
| 89 } | |
| 90 | |
| 91 void WindowTreeHostOzone::PostNativeEvent( | 86 void WindowTreeHostOzone::PostNativeEvent( |
| 92 const base::NativeEvent& native_event) { | 87 const base::NativeEvent& native_event) { |
| 93 NOTIMPLEMENTED(); | 88 NOTIMPLEMENTED(); |
| 94 } | 89 } |
| 95 | 90 |
| 96 void WindowTreeHostOzone::OnDeviceScaleFactorChanged( | 91 void WindowTreeHostOzone::OnDeviceScaleFactorChanged( |
| 97 float device_scale_factor) { | 92 float device_scale_factor) { |
| 98 NOTIMPLEMENTED(); | 93 NOTIMPLEMENTED(); |
| 99 } | 94 } |
| 100 | 95 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 121 return new WindowTreeHostOzone(bounds); | 116 return new WindowTreeHostOzone(bounds); |
| 122 } | 117 } |
| 123 | 118 |
| 124 // static | 119 // static |
| 125 gfx::Size WindowTreeHost::GetNativeScreenSize() { | 120 gfx::Size WindowTreeHost::GetNativeScreenSize() { |
| 126 NOTIMPLEMENTED(); | 121 NOTIMPLEMENTED(); |
| 127 return gfx::Size(); | 122 return gfx::Size(); |
| 128 } | 123 } |
| 129 | 124 |
| 130 } // namespace aura | 125 } // namespace aura |
| OLD | NEW |