Index: content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc |
diff --git a/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc b/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc |
index 5a697b22bdc5ffde5aa01c00dfc805d938d29b2b..3ddced2e70ca9ce166a73159ba34094249ca5f44 100644 |
--- a/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc |
+++ b/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc |
@@ -121,9 +121,17 @@ int BrowserWebKitPlatformSupportImpl::databaseDeleteFile( |
return file_util::Delete(path, false) ? 0 : 1; |
} |
-GpuChannelHostFactory* |
-BrowserWebKitPlatformSupportImpl::GetGpuChannelHostFactory() { |
- return BrowserGpuChannelHostFactory::instance(); |
+WebKit::WebGraphicsContext3D* BrowserWebKitPlatformSupportImpl:: |
+ createOffscreenGraphicsContext3D( |
+ const WebKit::WebGraphicsContext3D::Attributes& attributes) { |
+ NOTREACHED(); |
jamesr
2013/02/12 03:10:59
do you need to override these? Why not just use t
danakj
2013/02/12 03:15:46
I deleted it there so this is the only implementat
|
+ return NULL; |
+} |
+ |
+WebKit::WebGraphicsContext3D* BrowserWebKitPlatformSupportImpl:: |
+ sharedOffscreenGraphicsContext3D() { |
+ NOTREACHED(); |
+ return NULL; |
} |
} // namespace content |