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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned hei
ght, ExceptionState&); | 48 static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned hei
ght, ExceptionState&); |
49 static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned
width, unsigned height, ExceptionState&); | 49 static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned
width, unsigned height, ExceptionState&); |
50 | 50 |
51 IntSize size() const { return m_size; } | 51 IntSize size() const { return m_size; } |
52 int width() const { return m_size.width(); } | 52 int width() const { return m_size.width(); } |
53 int height() const { return m_size.height(); } | 53 int height() const { return m_size.height(); } |
54 Uint8ClampedArray* data() const { return m_data.get(); } | 54 Uint8ClampedArray* data() const { return m_data.get(); } |
55 | 55 |
56 void trace(Visitor*) { } | 56 void trace(Visitor*) { } |
57 | 57 |
58 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) OVERRIDE; | |
59 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*,
v8::Handle<v8::Object> wrapper, v8::Isolate*) OVERRIDE; | 58 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*,
v8::Handle<v8::Object> wrapper, v8::Isolate*) OVERRIDE; |
60 | 59 |
61 private: | 60 private: |
62 explicit ImageData(const IntSize&); | 61 explicit ImageData(const IntSize&); |
63 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); | 62 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); |
64 | 63 |
65 v8::Handle<v8::Object> associateWithWrapperInternal(v8::Handle<v8::Object> w
rapper, v8::Handle<v8::Object> creationContext, v8::Isolate*); | |
66 | |
67 IntSize m_size; | 64 IntSize m_size; |
68 RefPtr<Uint8ClampedArray> m_data; | 65 RefPtr<Uint8ClampedArray> m_data; |
69 }; | 66 }; |
70 | 67 |
71 } // namespace blink | 68 } // namespace blink |
72 | 69 |
73 #endif // ImageData_h | 70 #endif // ImageData_h |
OLD | NEW |