Chromium Code Reviews| Index: services/ui/surfaces/surfaces_context_provider.h |
| diff --git a/services/ui/surfaces/surfaces_context_provider.h b/services/ui/surfaces/surfaces_context_provider.h |
| index 207d3db32cbfe1168a547e85b783dce95b297662..b47d80203a3f8a8ba70a485db3bc48f5c006925a 100644 |
| --- a/services/ui/surfaces/surfaces_context_provider.h |
| +++ b/services/ui/surfaces/surfaces_context_provider.h |
| @@ -50,9 +50,9 @@ class SurfacesContextProvider : public cc::ContextProvider, |
| gpu::gles2::GLES2Interface* ContextGL() override; |
| gpu::ContextSupport* ContextSupport() override; |
| class GrContext* GrContext() override; |
| + cc::ContextCacheController* CacheController() override; |
| void InvalidateGrContext(uint32_t state) override; |
| gpu::Capabilities ContextCapabilities() override; |
| - void DeleteCachedResources() override {} |
| void SetLostContextCallback( |
| const LostContextCallback& lost_context_callback) override; |
| base::Lock* GetLock() override; |
| @@ -80,6 +80,8 @@ class SurfacesContextProvider : public cc::ContextProvider, |
| std::unique_ptr<gpu::TransferBuffer> transfer_buffer_; |
| std::unique_ptr<gpu::gles2::GLES2Implementation> implementation_; |
|
danakj
2016/08/26 23:49:09
nit: no whitespace
ericrk
2016/08/29 22:43:23
Done.
|
| + std::unique_ptr<cc::ContextCacheController> cache_controller_; |
| + |
| gpu::Capabilities capabilities_; |
| LostContextCallback lost_context_callback_; |