OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 * | 7 * |
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 12 matching lines...) Expand all Loading... |
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 */ | 27 */ |
28 | 28 |
29 #include "config.h" | 29 #include "config.h" |
30 #include "core/html/ImageData.h" | 30 #include "core/html/ImageData.h" |
31 | 31 |
32 #include "bindings/core/v8/ExceptionState.h" | 32 #include "bindings/core/v8/ExceptionState.h" |
| 33 #include "bindings/core/v8/custom/V8Uint8ClampedArrayCustom.h" |
33 #include "core/dom/ExceptionCode.h" | 34 #include "core/dom/ExceptionCode.h" |
34 #include "platform/RuntimeEnabledFeatures.h" | 35 #include "platform/RuntimeEnabledFeatures.h" |
35 | 36 |
36 namespace blink { | 37 namespace blink { |
37 | 38 |
38 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(const IntSize& size) | 39 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(const IntSize& size) |
39 { | 40 { |
40 Checked<int, RecordOverflow> dataSize = 4; | 41 Checked<int, RecordOverflow> dataSize = 4; |
41 dataSize *= size.width(); | 42 dataSize *= size.width(); |
42 dataSize *= size.height(); | 43 dataSize *= size.height(); |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 if (!height) { | 118 if (!height) { |
118 height = length / width; | 119 height = length / width; |
119 } else if (height != length / width) { | 120 } else if (height != length / width) { |
120 exceptionState.throwDOMException(IndexSizeError, "The input data byte le
ngth is not equal to (4 * width * height)."); | 121 exceptionState.throwDOMException(IndexSizeError, "The input data byte le
ngth is not equal to (4 * width * height)."); |
121 return nullptr; | 122 return nullptr; |
122 } | 123 } |
123 | 124 |
124 return adoptRefWillBeNoop(new ImageData(IntSize(width, height), data)); | 125 return adoptRefWillBeNoop(new ImageData(IntSize(width, height), data)); |
125 } | 126 } |
126 | 127 |
| 128 v8::Handle<v8::Object> ImageData::wrap(v8::Handle<v8::Object> creationContext, v
8::Isolate* isolate) |
| 129 { |
| 130 v8::Handle<v8::Object> wrapper = ScriptWrappable::wrap(creationContext, isol
ate); |
| 131 if (!wrapper.IsEmpty()) { |
| 132 // Create a V8 Uint8ClampedArray object. |
| 133 v8::Handle<v8::Value> pixelArray = toV8(data(), creationContext, isolate
); |
| 134 // Set the "data" property of the ImageData object to |
| 135 // the created v8 object, eliminating the C++ callback |
| 136 // when accessing the "data" property. |
| 137 if (!pixelArray.IsEmpty()) |
| 138 wrapper->ForceSet(v8AtomicString(isolate, "data"), pixelArray, v8::R
eadOnly); |
| 139 } |
| 140 return wrapper; |
| 141 } |
| 142 |
127 ImageData::ImageData(const IntSize& size) | 143 ImageData::ImageData(const IntSize& size) |
128 : m_size(size) | 144 : m_size(size) |
129 , m_data(Uint8ClampedArray::create(size.width() * size.height() * 4)) | 145 , m_data(Uint8ClampedArray::create(size.width() * size.height() * 4)) |
130 { | 146 { |
131 ScriptWrappable::init(this); | 147 ScriptWrappable::init(this); |
132 } | 148 } |
133 | 149 |
134 ImageData::ImageData(const IntSize& size, PassRefPtr<Uint8ClampedArray> byteArra
y) | 150 ImageData::ImageData(const IntSize& size, PassRefPtr<Uint8ClampedArray> byteArra
y) |
135 : m_size(size) | 151 : m_size(size) |
136 , m_data(byteArray) | 152 , m_data(byteArray) |
137 { | 153 { |
138 ASSERT_WITH_SECURITY_IMPLICATION(static_cast<unsigned>(size.width() * size.h
eight() * 4) <= m_data->length()); | 154 ASSERT_WITH_SECURITY_IMPLICATION(static_cast<unsigned>(size.width() * size.h
eight() * 4) <= m_data->length()); |
139 ScriptWrappable::init(this); | 155 ScriptWrappable::init(this); |
140 } | 156 } |
141 | 157 |
142 } | 158 } |
143 | |
OLD | NEW |