Index: content/browser/renderer_host/compositor_impl_android.cc |
diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc |
index db77287774f2001f301e7b7e17ab2ae219837804..8bd5d977af12e32253a91f04d6b7b63fb9f5435d 100644 |
--- a/content/browser/renderer_host/compositor_impl_android.cc |
+++ b/content/browser/renderer_host/compositor_impl_android.cc |
@@ -341,6 +341,32 @@ scoped_ptr<cc::OutputSurface> CompositorImpl::createOutputSurface() { |
} |
} |
+WebKit::WebGraphicsContext3D* |
+CompositorImpl::OffscreenContext3dForMainThread() { |
+ // TODO(danakj): Get a context through ImageTransportSurfaceAndroid. |
+ return NULL; |
+} |
+ |
+WebKit::WebGraphicsContext3D* |
+CompositorImpl::OffscreenContext3dForCompositorThread() { |
+ // TODO(danakj): Get a context through ImageTransportSurfaceAndroid. |
+ return NULL; |
+} |
+ |
+GrContext* CompositorImpl::OffscreenGrContextForMainThread() { |
+ // TODO(danakj): Get a context through ImageTransportSurfaceAndroid. |
+ return NULL; |
+} |
+ |
+GrContext* CompositorImpl::OffscreenGrContextForCompositorThread() { |
+ // TODO(danakj): Get a context through ImageTransportSurfaceAndroid. |
+ return NULL; |
+} |
+ |
+void CompositorImpl::DestroyOffscreenContext3dForCompositorThread() { |
+ // TODO(danakj): Destroy the context through ImageTransportSurfaceAndroid. |
+} |
+ |
scoped_ptr<cc::InputHandler> CompositorImpl::createInputHandler() { |
return scoped_ptr<cc::InputHandler>(); |
} |