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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp

Issue 2333133003: Make Surface creation lazy for OffscreenCanvasFrameReceiverImpl (Closed)
Patch Set: Rebase Created 4 years, 3 months 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
Index: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
index f22a7687044d952d2f0f7061ddcc2d0ffc0ec124..0d8928c2e6133ce3b4568a71020907a32efbc285 100644
--- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
@@ -24,11 +24,6 @@ bool CanvasSurfaceLayerBridgeClientImpl::syncGetSurfaceId(cc::SurfaceId* surface
return m_service->GetSurfaceId(surfaceIdPtr);
}
-void CanvasSurfaceLayerBridgeClientImpl::asyncRequestSurfaceCreation(const cc::SurfaceId& surfaceId)
-{
- m_service->RequestSurfaceCreation(surfaceId);
-}
-
void CanvasSurfaceLayerBridgeClientImpl::asyncRequire(const cc::SurfaceId& surfaceId, const cc::SurfaceSequence& sequence)
{
m_service->Require(surfaceId, sequence);

Powered by Google App Engine
This is Rietveld 408576698