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

Unified Diff: third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.cpp

Issue 2388753003: Introduce cc::LocalFrameId and use in SurfaceFactory (Closed)
Patch Set: Fix exo_unittests Created 4 years, 2 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/modules/canvas/HTMLCanvasElementModule.cpp
diff --git a/third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.cpp b/third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.cpp
index 38e0535a6e79ef1aada1d22bb1f2b93bad2cb9fb..4c30861ef7c573338193634985326ede43e9da06 100644
--- a/third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.cpp
+++ b/third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.cpp
@@ -67,7 +67,8 @@ OffscreenCanvas* HTMLCanvasElementModule::transferControlToOffscreenInternal(
offscreenCanvas->setSurfaceId(
bridge->getSurfaceId().frame_sink_id().client_id(),
bridge->getSurfaceId().frame_sink_id().sink_id(),
- bridge->getSurfaceId().local_id(), bridge->getSurfaceId().nonce());
+ bridge->getSurfaceId().local_frame_id().local_id(),
+ bridge->getSurfaceId().local_frame_id().nonce());
}
return offscreenCanvas;
}

Powered by Google App Engine
This is Rietveld 408576698