| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 NOTIMPLEMENTED(); | 312 NOTIMPLEMENTED(); |
| 313 } | 313 } |
| 314 | 314 |
| 315 void RenderWidgetHostViewMus::UnlockCompositingSurface() { | 315 void RenderWidgetHostViewMus::UnlockCompositingSurface() { |
| 316 NOTIMPLEMENTED(); | 316 NOTIMPLEMENTED(); |
| 317 } | 317 } |
| 318 | 318 |
| 319 #if defined(OS_WIN) | 319 #if defined(OS_WIN) |
| 320 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( | 320 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( |
| 321 gfx::NativeViewAccessible accessible_parent) {} | 321 gfx::NativeViewAccessible accessible_parent) {} |
| 322 |
| 323 gfx::NativeViewId RenderWidgetHostViewMus::GetParentForWindowlessPlugin() |
| 324 const { |
| 325 return gfx::NativeViewId(); |
| 326 } |
| 322 #endif | 327 #endif |
| 323 | 328 |
| 324 } // namespace content | 329 } // namespace content |
| OLD | NEW |