| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 { | 193 { |
| 194 if (!data.get()) | 194 if (!data.get()) |
| 195 return SizeAvailable; | 195 return SizeAvailable; |
| 196 | 196 |
| 197 int length = data->size(); | 197 int length = data->size(); |
| 198 if (!length) | 198 if (!length) |
| 199 return SizeAvailable; | 199 return SizeAvailable; |
| 200 | 200 |
| 201 // If ImageSource::setData() fails, we know that this is a decode error. | 201 // If ImageSource::setData() fails, we know that this is a decode error. |
| 202 // Report size available so that it gets registered as such in ImageResource
. | 202 // Report size available so that it gets registered as such in ImageResource
. |
| 203 if (!m_source.setData(data, allDataReceived)) | 203 if (!m_source.setData(std::move(data), allDataReceived)) |
| 204 return SizeAvailable; | 204 return SizeAvailable; |
| 205 | 205 |
| 206 return dataChanged(allDataReceived); | 206 return dataChanged(allDataReceived); |
| 207 } | 207 } |
| 208 | 208 |
| 209 Image::SizeAvailability BitmapImage::dataChanged(bool allDataReceived) | 209 Image::SizeAvailability BitmapImage::dataChanged(bool allDataReceived) |
| 210 { | 210 { |
| 211 TRACE_EVENT0("blink", "BitmapImage::dataChanged"); | 211 TRACE_EVENT0("blink", "BitmapImage::dataChanged"); |
| 212 | 212 |
| 213 // Clear all partially-decoded frames. For most image formats, there is only | 213 // Clear all partially-decoded frames. For most image formats, there is only |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 | 635 |
| 636 return true; | 636 return true; |
| 637 } | 637 } |
| 638 | 638 |
| 639 void BitmapImage::notifyObserversOfAnimationAdvance(TimerBase*) | 639 void BitmapImage::notifyObserversOfAnimationAdvance(TimerBase*) |
| 640 { | 640 { |
| 641 getImageObserver()->animationAdvanced(this); | 641 getImageObserver()->animationAdvanced(this); |
| 642 } | 642 } |
| 643 | 643 |
| 644 } // namespace blink | 644 } // namespace blink |
| OLD | NEW |