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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/FrameData.cpp

Issue 1925533003: High CPU and increased memory usage fix for high-res (GIF, WEBP...) animations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing. DCHECK. Thanks fmalita@. Created 4 years, 7 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 Samuel Weinig (sam.weinig@gmail.com) 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 26 matching lines...) Expand all
37 , m_hasAlpha(true) 37 , m_hasAlpha(true)
38 , m_frameBytes(0) 38 , m_frameBytes(0)
39 { 39 {
40 } 40 }
41 41
42 FrameData::~FrameData() 42 FrameData::~FrameData()
43 { 43 {
44 clear(true); 44 clear(true);
45 } 45 }
46 46
47 bool FrameData::clear(bool clearMetadata) 47 void FrameData::clear(bool clearMetadata)
48 { 48 {
49 if (clearMetadata) 49 if (clearMetadata)
50 m_haveMetadata = false; 50 m_haveMetadata = false;
51 51
52 m_orientation = DefaultImageOrientation; 52 m_orientation = DefaultImageOrientation;
53 m_frameBytes = 0; 53 m_frameBytes = 0;
54
55 if (m_frame) {
56 m_frame.clear();
57 return true;
58 }
59 return false;
60 } 54 }
61 55
62 } // namespace blink 56 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/FrameData.h ('k') | third_party/WebKit/Source/platform/graphics/GeneratedImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698