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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp

Issue 1719533002: Modify YUV codecs to match Skia's API change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update DEPS again Created 4 years, 9 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/image-decoders/ImageDecoder.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp
index 75d70edf9113ec4eaf2cccb479dcd4329b6366b8..dc92826df7f3ef23d443bb621ee2359fad6959df 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp
@@ -251,7 +251,7 @@ ImagePlanes::ImagePlanes()
}
}
-ImagePlanes::ImagePlanes(void* planes[3], size_t rowBytes[3])
+ImagePlanes::ImagePlanes(void* planes[3], const size_t rowBytes[3])
{
for (int i = 0; i < 3; ++i) {
m_planes[i] = planes[i];

Powered by Google App Engine
This is Rietveld 408576698