Index: android_webview/browser/aw_render_thread_context_provider.cc |
diff --git a/android_webview/browser/aw_render_thread_context_provider.cc b/android_webview/browser/aw_render_thread_context_provider.cc |
index c97f253b5db57cdc81eff987ecc35ad08942fb1e..36ec828186c0327e948100845b199cce05c44c9d 100644 |
--- a/android_webview/browser/aw_render_thread_context_provider.cc |
+++ b/android_webview/browser/aw_render_thread_context_provider.cc |
@@ -63,13 +63,14 @@ AwRenderThreadContextProvider::AwRenderThreadContextProvider( |
context_.reset(gpu::GLInProcessContext::Create( |
service, surface, surface->IsOffscreen(), gfx::kNullAcceleratedWidget, |
- nullptr /* share_context */, attributes, limits, nullptr, nullptr)); |
+ nullptr /* share_context */, attributes, limits, nullptr, nullptr, |
+ nullptr)); |
context_->GetImplementation()->SetLostContextCallback(base::Bind( |
&AwRenderThreadContextProvider::OnLostContext, base::Unretained(this))); |
cache_controller_.reset( |
- new cc::ContextCacheController(context_->GetImplementation())); |
+ new cc::ContextCacheController(context_->GetImplementation(), nullptr)); |
} |
AwRenderThreadContextProvider::~AwRenderThreadContextProvider() { |