OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 String encodingMimeType = toEncodingMimeType(mimeType); | 604 String encodingMimeType = toEncodingMimeType(mimeType); |
605 | 605 |
606 ImageData* imageData = toImageData(BackBuffer); | 606 ImageData* imageData = toImageData(BackBuffer); |
607 // imageData unref its data, which we still keep alive for the async toBlob
thread | 607 // imageData unref its data, which we still keep alive for the async toBlob
thread |
608 ScopedDisposal<ImageData> disposer(imageData); | 608 ScopedDisposal<ImageData> disposer(imageData); |
609 // Add a ref to keep image data alive until completion of encoding | 609 // Add a ref to keep image data alive until completion of encoding |
610 RefPtr<DOMUint8ClampedArray> imageDataRef(imageData->data()); | 610 RefPtr<DOMUint8ClampedArray> imageDataRef(imageData->data()); |
611 | 611 |
612 RefPtr<CanvasAsyncBlobCreator> asyncCreatorRef = CanvasAsyncBlobCreator::cre
ate(imageDataRef.release(), encodingMimeType, imageData->size(), callback, scrip
tState->executionContext()); | 612 RefPtr<CanvasAsyncBlobCreator> asyncCreatorRef = CanvasAsyncBlobCreator::cre
ate(imageDataRef.release(), encodingMimeType, imageData->size(), callback, scrip
tState->executionContext()); |
613 | 613 |
614 // TODO(xlai): Remove idle-periods version of implementation completely, htt
p://crbug.com/564218 | 614 asyncCreatorRef->scheduleAsyncBlobCreation(quality); |
615 asyncCreatorRef->scheduleAsyncBlobCreation(false, quality); | |
616 } | 615 } |
617 | 616 |
618 void HTMLCanvasElement::addListener(CanvasDrawListener* listener) | 617 void HTMLCanvasElement::addListener(CanvasDrawListener* listener) |
619 { | 618 { |
620 m_listeners.add(listener); | 619 m_listeners.add(listener); |
621 } | 620 } |
622 | 621 |
623 void HTMLCanvasElement::removeListener(CanvasDrawListener* listener) | 622 void HTMLCanvasElement::removeListener(CanvasDrawListener* listener) |
624 { | 623 { |
625 m_listeners.remove(listener); | 624 m_listeners.remove(listener); |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1013 } | 1012 } |
1014 return ImageBitmapSource::fulfillImageBitmap(scriptState, isPaintable() ? Im
ageBitmap::create(this, IntRect(sx, sy, sw, sh), options) : nullptr); | 1013 return ImageBitmapSource::fulfillImageBitmap(scriptState, isPaintable() ? Im
ageBitmap::create(this, IntRect(sx, sy, sw, sh), options) : nullptr); |
1015 } | 1014 } |
1016 | 1015 |
1017 bool HTMLCanvasElement::isOpaque() const | 1016 bool HTMLCanvasElement::isOpaque() const |
1018 { | 1017 { |
1019 return m_context && !m_context->hasAlpha(); | 1018 return m_context && !m_context->hasAlpha(); |
1020 } | 1019 } |
1021 | 1020 |
1022 } // blink | 1021 } // blink |
OLD | NEW |