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

Side by Side Diff: third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp

Issue 2618633004: Add support for Animated PNG (Closed)
Patch Set: Reject bad data. Cleanups Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 if (!m_reader) { 262 if (!m_reader) {
263 m_reader = WTF::makeUnique<GIFImageReader>(this); 263 m_reader = WTF::makeUnique<GIFImageReader>(this);
264 m_reader->setData(m_data); 264 m_reader->setData(m_data);
265 } 265 }
266 266
267 if (!m_reader->parse(query)) 267 if (!m_reader->parse(query))
268 setFailed(); 268 setFailed();
269 } 269 }
270 270
271 void GIFImageDecoder::onInitFrameBuffer(size_t frameIndex) { 271 bool GIFImageDecoder::onInitFrameBuffer(size_t frameIndex) {
272 m_currentBufferSawAlpha = false; 272 m_currentBufferSawAlpha = false;
273 return true;
273 } 274 }
274 275
275 bool GIFImageDecoder::canReusePreviousFrameBuffer(size_t frameIndex) const { 276 bool GIFImageDecoder::canReusePreviousFrameBuffer(size_t frameIndex) const {
276 DCHECK(frameIndex < m_frameBufferCache.size()); 277 DCHECK(frameIndex < m_frameBufferCache.size());
277 return m_frameBufferCache[frameIndex].getDisposalMethod() != 278 return m_frameBufferCache[frameIndex].getDisposalMethod() !=
278 ImageFrame::DisposeOverwritePrevious; 279 ImageFrame::DisposeOverwritePrevious;
279 } 280 }
280 281
281 } // namespace blink 282 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698