Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_guest.cc

Issue 11194042: Implement TextureImageTransportSurface using texture mailbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura DCHECK() Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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(int32 width_in_pixel, 204 void RenderWidgetHostViewGuest::AcceleratedSurfaceNew(
205 int32 height_in_pixel, 205 int32 width_in_pixel,
206 uint64 surface_handle) { 206 int32 height_in_pixel,
207 uint64 surface_handle,
208 const std::string& mailbox_name) {
207 NOTIMPLEMENTED(); 209 NOTIMPLEMENTED();
208 } 210 }
209 211
210 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer( 212 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer(
211 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, 213 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
212 int gpu_host_id) { 214 int gpu_host_id) {
213 NOTIMPLEMENTED(); 215 NOTIMPLEMENTED();
214 } 216 }
215 217
216 void RenderWidgetHostViewGuest::AcceleratedSurfaceSuspend() { 218 void RenderWidgetHostViewGuest::AcceleratedSurfaceSuspend() {
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 } 402 }
401 #endif 403 #endif
402 404
403 #if defined(OS_POSIX) || defined(USE_AURA) 405 #if defined(OS_POSIX) || defined(USE_AURA)
404 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { 406 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) {
405 NOTIMPLEMENTED(); 407 NOTIMPLEMENTED();
406 } 408 }
407 #endif // defined(OS_POSIX) || defined(USE_AURA) 409 #endif // defined(OS_POSIX) || defined(USE_AURA)
408 410
409 } // namespace content 411 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698