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

Unified Diff: content/common/gpu/image_transport_surface_win.cc

Issue 8513013: Plumb the partial swap though image transport. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now with a few compile fixes (tested Win, Mac, Linux, and Aura) Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/gpu/image_transport_surface_mac.cc ('k') | ui/gfx/gl/gl_surface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/image_transport_surface_win.cc
diff --git a/content/common/gpu/image_transport_surface_win.cc b/content/common/gpu/image_transport_surface_win.cc
index 91040fe5a71239553acfac3c79beddd82bee6e4d..f3eb9d5a318db6eaa44d5004f1abe915e4c36488 100644
--- a/content/common/gpu/image_transport_surface_win.cc
+++ b/content/common/gpu/image_transport_surface_win.cc
@@ -43,6 +43,7 @@ class PbufferImageTransportSurface
virtual void OnNewSurfaceACK(uint64 surface_id,
TransportDIB::Handle shm_handle) OVERRIDE;
virtual void OnBuffersSwappedACK() OVERRIDE;
+ virtual void OnPostSubBufferACK() OVERRIDE;
virtual void OnResizeViewACK() OVERRIDE;
virtual void OnResize(gfx::Size size) OVERRIDE;
@@ -121,14 +122,18 @@ void PbufferImageTransportSurface::OnBuffersSwappedACK() {
helper_->SetScheduled(true);
}
+void PbufferImageTransportSurface::OnPostSubBufferACK() {
+ NOTREACHED();
+}
+
void PbufferImageTransportSurface::OnNewSurfaceACK(
uint64 surface_id,
TransportDIB::Handle shm_handle) {
- NOTIMPLEMENTED();
+ NOTREACHED();
}
void PbufferImageTransportSurface::OnResizeViewACK() {
- NOTIMPLEMENTED();
+ NOTREACHED();
}
void PbufferImageTransportSurface::OnResize(gfx::Size size) {
« no previous file with comments | « content/common/gpu/image_transport_surface_mac.cc ('k') | ui/gfx/gl/gl_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698