| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/bind_helpers.h" | 5 #include "base/bind_helpers.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
| 9 #include "content/browser/renderer_host/render_view_host_impl.h" | 9 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" | 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 } | 194 } |
| 195 | 195 |
| 196 void RenderWidgetHostViewGuest::CopyFromCompositingSurface( | 196 void RenderWidgetHostViewGuest::CopyFromCompositingSurface( |
| 197 const gfx::Rect& src_subrect, | 197 const gfx::Rect& src_subrect, |
| 198 const gfx::Size& /* dst_size */, | 198 const gfx::Size& /* dst_size */, |
| 199 const base::Callback<void(bool)>& callback, | 199 const base::Callback<void(bool)>& callback, |
| 200 skia::PlatformBitmap* output) { | 200 skia::PlatformBitmap* output) { |
| 201 NOTIMPLEMENTED(); | 201 NOTIMPLEMENTED(); |
| 202 } | 202 } |
| 203 | 203 |
| 204 void RenderWidgetHostViewGuest::AcceleratedSurfaceNew( | 204 void RenderWidgetHostViewGuest::AcceleratedSurfaceNew(int32 width_in_pixel, |
| 205 int32 width_in_pixel, | 205 int32 height_in_pixel, |
| 206 int32 height_in_pixel, | 206 uint64 surface_handle) { |
| 207 uint64 surface_handle, | |
| 208 const std::string& mailbox_name) { | |
| 209 NOTIMPLEMENTED(); | 207 NOTIMPLEMENTED(); |
| 210 } | 208 } |
| 211 | 209 |
| 212 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer( | 210 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer( |
| 213 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, | 211 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, |
| 214 int gpu_host_id) { | 212 int gpu_host_id) { |
| 215 NOTIMPLEMENTED(); | 213 NOTIMPLEMENTED(); |
| 216 } | 214 } |
| 217 | 215 |
| 218 void RenderWidgetHostViewGuest::AcceleratedSurfaceSuspend() { | 216 void RenderWidgetHostViewGuest::AcceleratedSurfaceSuspend() { |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 } | 400 } |
| 403 #endif | 401 #endif |
| 404 | 402 |
| 405 #if defined(OS_POSIX) || defined(USE_AURA) | 403 #if defined(OS_POSIX) || defined(USE_AURA) |
| 406 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { | 404 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { |
| 407 NOTIMPLEMENTED(); | 405 NOTIMPLEMENTED(); |
| 408 } | 406 } |
| 409 #endif // defined(OS_POSIX) || defined(USE_AURA) | 407 #endif // defined(OS_POSIX) || defined(USE_AURA) |
| 410 | 408 |
| 411 } // namespace content | 409 } // namespace content |
| OLD | NEW |