| 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 "content/browser/renderer_host/render_widget_host_view_mus.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_mus.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "components/mus/public/cpp/window.h" | 10 #include "components/mus/public/cpp/window.h" |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 } | 172 } |
| 173 | 173 |
| 174 gfx::NativeViewId RenderWidgetHostViewMus::GetNativeViewId() const { | 174 gfx::NativeViewId RenderWidgetHostViewMus::GetNativeViewId() const { |
| 175 return gfx::NativeViewId(); | 175 return gfx::NativeViewId(); |
| 176 } | 176 } |
| 177 | 177 |
| 178 gfx::NativeViewAccessible RenderWidgetHostViewMus::GetNativeViewAccessible() { | 178 gfx::NativeViewAccessible RenderWidgetHostViewMus::GetNativeViewAccessible() { |
| 179 return gfx::NativeViewAccessible(); | 179 return gfx::NativeViewAccessible(); |
| 180 } | 180 } |
| 181 | 181 |
| 182 void RenderWidgetHostViewMus::MovePluginWindows( | |
| 183 const std::vector<WebPluginGeometry>& moves) { | |
| 184 } | |
| 185 | |
| 186 void RenderWidgetHostViewMus::UpdateCursor(const WebCursor& cursor) { | 182 void RenderWidgetHostViewMus::UpdateCursor(const WebCursor& cursor) { |
| 187 // TODO(fsamuel): Implement cursors in Mus. | 183 // TODO(fsamuel): Implement cursors in Mus. |
| 188 NOTIMPLEMENTED(); | 184 NOTIMPLEMENTED(); |
| 189 } | 185 } |
| 190 | 186 |
| 191 void RenderWidgetHostViewMus::SetIsLoading(bool is_loading) { | 187 void RenderWidgetHostViewMus::SetIsLoading(bool is_loading) { |
| 192 } | 188 } |
| 193 | 189 |
| 194 void RenderWidgetHostViewMus::TextInputStateChanged( | 190 void RenderWidgetHostViewMus::TextInputStateChanged( |
| 195 const ViewHostMsg_TextInputState_Params& params) { | 191 const ViewHostMsg_TextInputState_Params& params) { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( | 320 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( |
| 325 gfx::NativeViewAccessible accessible_parent) {} | 321 gfx::NativeViewAccessible accessible_parent) {} |
| 326 | 322 |
| 327 gfx::NativeViewId RenderWidgetHostViewMus::GetParentForWindowlessPlugin() | 323 gfx::NativeViewId RenderWidgetHostViewMus::GetParentForWindowlessPlugin() |
| 328 const { | 324 const { |
| 329 return gfx::NativeViewId(); | 325 return gfx::NativeViewId(); |
| 330 } | 326 } |
| 331 #endif | 327 #endif |
| 332 | 328 |
| 333 } // namespace content | 329 } // namespace content |
| OLD | NEW |