| 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 "mojo/services/view_manager/root_node_manager.h" | 5 #include "mojo/services/view_manager/root_node_manager.h" |
| 6 #include "mojo/services/view_manager/window_tree_host_impl.h" | 6 #include "mojo/services/view_manager/window_tree_host_impl.h" |
| 7 #include "mojo/public/c/gles2/gles2.h" | 7 #include "mojo/public/c/gles2/gles2.h" |
| 8 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" | 8 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" |
| 9 #include "mojo/services/view_manager/context_factory_impl.h" | 9 #include "mojo/services/view_manager/context_factory_impl.h" |
| 10 #include "ui/aura/env.h" | 10 #include "ui/aura/env.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 void WindowTreeHostImpl::ReleaseCapture() { | 136 void WindowTreeHostImpl::ReleaseCapture() { |
| 137 NOTIMPLEMENTED(); | 137 NOTIMPLEMENTED(); |
| 138 } | 138 } |
| 139 | 139 |
| 140 void WindowTreeHostImpl::PostNativeEvent( | 140 void WindowTreeHostImpl::PostNativeEvent( |
| 141 const base::NativeEvent& native_event) { | 141 const base::NativeEvent& native_event) { |
| 142 NOTIMPLEMENTED(); | 142 NOTIMPLEMENTED(); |
| 143 } | 143 } |
| 144 | 144 |
| 145 void WindowTreeHostImpl::OnDeviceScaleFactorChanged(float device_scale_factor) { | |
| 146 NOTIMPLEMENTED(); | |
| 147 } | |
| 148 | |
| 149 void WindowTreeHostImpl::SetCursorNative(gfx::NativeCursor cursor) { | 145 void WindowTreeHostImpl::SetCursorNative(gfx::NativeCursor cursor) { |
| 150 NOTIMPLEMENTED(); | 146 NOTIMPLEMENTED(); |
| 151 } | 147 } |
| 152 | 148 |
| 153 void WindowTreeHostImpl::MoveCursorToNative(const gfx::Point& location) { | 149 void WindowTreeHostImpl::MoveCursorToNative(const gfx::Point& location) { |
| 154 NOTIMPLEMENTED(); | 150 NOTIMPLEMENTED(); |
| 155 } | 151 } |
| 156 | 152 |
| 157 void WindowTreeHostImpl::OnCursorVisibilityChangedNative(bool show) { | 153 void WindowTreeHostImpl::OnCursorVisibilityChangedNative(bool show) { |
| 158 NOTIMPLEMENTED(); | 154 NOTIMPLEMENTED(); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 break; | 211 break; |
| 216 } | 212 } |
| 217 // TODO(beng): touch, etc. | 213 // TODO(beng): touch, etc. |
| 218 } | 214 } |
| 219 callback.Run(); | 215 callback.Run(); |
| 220 }; | 216 }; |
| 221 | 217 |
| 222 } // namespace service | 218 } // namespace service |
| 223 } // namespace view_manager | 219 } // namespace view_manager |
| 224 } // namespace mojo | 220 } // namespace mojo |
| OLD | NEW |