| OLD | NEW | 
|---|
| 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  Loading... | 
| 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 | 
| OLD | NEW | 
|---|