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(DOMUint8ClampedArray*, unsig
ned width, ExceptionState&); | 49 static PassRefPtrWillBeRawPtr<ImageData> create(DOMUint8ClampedArray*, unsig
ned width, ExceptionState&); |
50 static PassRefPtrWillBeRawPtr<ImageData> create(DOMUint8ClampedArray*, unsig
ned width, unsigned height, ExceptionState&); | 50 static PassRefPtrWillBeRawPtr<ImageData> create(DOMUint8ClampedArray*, unsig
ned width, unsigned height, ExceptionState&); |
51 | 51 |
52 IntSize size() const { return m_size; } | 52 IntSize size() const { return m_size; } |
53 int width() const { return m_size.width(); } | 53 int width() const { return m_size.width(); } |
54 int height() const { return m_size.height(); } | 54 int height() const { return m_size.height(); } |
55 const DOMUint8ClampedArray* data() const { return m_data.get(); } | 55 const DOMUint8ClampedArray* data() const { return m_data.get(); } |
56 DOMUint8ClampedArray* data() { return m_data.get(); } | 56 DOMUint8ClampedArray* data() { return m_data.get(); } |
57 | 57 |
58 void trace(Visitor*) { } | 58 DEFINE_INLINE_TRACE() { } |
59 | 59 |
60 virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const Wrap
perTypeInfo*, v8::Handle<v8::Object> wrapper) override; | 60 virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const Wrap
perTypeInfo*, v8::Handle<v8::Object> wrapper) override; |
61 | 61 |
62 private: | 62 private: |
63 explicit ImageData(const IntSize&); | 63 explicit ImageData(const IntSize&); |
64 ImageData(const IntSize&, PassRefPtr<DOMUint8ClampedArray>); | 64 ImageData(const IntSize&, PassRefPtr<DOMUint8ClampedArray>); |
65 | 65 |
66 static bool validateConstructorArguments(DOMUint8ClampedArray*, unsigned wid
th, unsigned&, ExceptionState&); | 66 static bool validateConstructorArguments(DOMUint8ClampedArray*, unsigned wid
th, unsigned&, ExceptionState&); |
67 | 67 |
68 IntSize m_size; | 68 IntSize m_size; |
69 RefPtr<DOMUint8ClampedArray> m_data; | 69 RefPtr<DOMUint8ClampedArray> m_data; |
70 }; | 70 }; |
71 | 71 |
72 } // namespace blink | 72 } // namespace blink |
73 | 73 |
74 #endif // ImageData_h | 74 #endif // ImageData_h |
OLD | NEW |