OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 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 23 matching lines...) Expand all Loading... |
34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
35 #include "wtf/RefCounted.h" | 35 #include "wtf/RefCounted.h" |
36 #include "wtf/RefPtr.h" | 36 #include "wtf/RefPtr.h" |
37 #include "wtf/Uint8ClampedArray.h" | 37 #include "wtf/Uint8ClampedArray.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class ExceptionState; | 41 class ExceptionState; |
42 | 42 |
43 class ImageData FINAL : public RefCountedWillBeGarbageCollectedFinalized<ImageDa
ta>, public ScriptWrappable { | 43 class ImageData FINAL : public RefCountedWillBeGarbageCollectedFinalized<ImageDa
ta>, public ScriptWrappable { |
| 44 DEFINE_WRAPPERTYPEINFO(); |
44 public: | 45 public: |
45 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&); | 46 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&); |
46 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&, PassRefPtr<U
int8ClampedArray>); | 47 static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&, PassRefPtr<U
int8ClampedArray>); |
47 static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned hei
ght, ExceptionState&); | 48 static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned hei
ght, ExceptionState&); |
48 static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned
width, unsigned height, ExceptionState&); | 49 static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned
width, unsigned height, ExceptionState&); |
49 | 50 |
50 IntSize size() const { return m_size; } | 51 IntSize size() const { return m_size; } |
51 int width() const { return m_size.width(); } | 52 int width() const { return m_size.width(); } |
52 int height() const { return m_size.height(); } | 53 int height() const { return m_size.height(); } |
53 Uint8ClampedArray* data() const { return m_data.get(); } | 54 Uint8ClampedArray* data() const { return m_data.get(); } |
54 | 55 |
55 void trace(Visitor*) { } | 56 void trace(Visitor*) { } |
56 | 57 |
| 58 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) OVERRIDE; |
| 59 |
57 private: | 60 private: |
58 explicit ImageData(const IntSize&); | 61 explicit ImageData(const IntSize&); |
59 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); | 62 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); |
60 | 63 |
61 IntSize m_size; | 64 IntSize m_size; |
62 RefPtr<Uint8ClampedArray> m_data; | 65 RefPtr<Uint8ClampedArray> m_data; |
63 }; | 66 }; |
64 | 67 |
65 } // namespace blink | 68 } // namespace blink |
66 | 69 |
67 #endif // ImageData_h | 70 #endif // ImageData_h |
OLD | NEW |