| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 #endif // defined(OS_MACOSX) | 309 #endif // defined(OS_MACOSX) |
| 310 | 310 |
| 311 void RenderWidgetHostViewMus::LockCompositingSurface() { | 311 void RenderWidgetHostViewMus::LockCompositingSurface() { |
| 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) | |
| 320 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( | |
| 321 gfx::NativeViewAccessible accessible_parent) {} | |
| 322 #endif | |
| 323 | |
| 324 } // namespace content | 319 } // namespace content |
| OLD | NEW |