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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClient.h

Issue 2102123002: Make Satisfy/Require callbacks pass Surface id and sequence by reference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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/CanvasSurfaceLayerBridgeClient.h
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClient.h b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClient.h
index 72265db89bf7de36201e96dd261929ac35732490..99616054f742bdd78cffb89c3918bc8dcdb6c830 100644
--- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClient.h
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClient.h
@@ -22,8 +22,8 @@ public:
virtual void asyncRequestSurfaceCreation(const cc::SurfaceId&) = 0;
// Calls that ensure correct destruction order of surface.
- virtual void asyncRequire(cc::SurfaceId, cc::SurfaceSequence) = 0;
- virtual void asyncSatisfy(cc::SurfaceSequence) = 0;
+ virtual void asyncRequire(const cc::SurfaceId&, const cc::SurfaceSequence&) = 0;
+ virtual void asyncSatisfy(const cc::SurfaceSequence&) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698