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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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; | 58 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) OVERRIDE; |
| 59 v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Hand
le<v8::Object> wrapper, v8::Isolate*); |
59 | 60 |
60 private: | 61 private: |
61 explicit ImageData(const IntSize&); | 62 explicit ImageData(const IntSize&); |
62 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); | 63 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); |
63 | 64 |
| 65 v8::Handle<v8::Object> associateWithWrapperInternal(v8::Handle<v8::Object> w
rapper, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
| 66 |
64 IntSize m_size; | 67 IntSize m_size; |
65 RefPtr<Uint8ClampedArray> m_data; | 68 RefPtr<Uint8ClampedArray> m_data; |
66 }; | 69 }; |
67 | 70 |
68 } // namespace blink | 71 } // namespace blink |
69 | 72 |
70 #endif // ImageData_h | 73 #endif // ImageData_h |
OLD | NEW |