| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 static PassRefPtr<ImageData> create(const IntSize&); | 46 static PassRefPtr<ImageData> create(const IntSize&); |
| 47 static PassRefPtr<ImageData> create(const IntSize&, PassRefPtr<Uint8ClampedA
rray>); | 47 static PassRefPtr<ImageData> create(const IntSize&, PassRefPtr<Uint8ClampedA
rray>); |
| 48 static PassRefPtr<ImageData> create(unsigned width, unsigned height, Excepti
onState&); | 48 static PassRefPtr<ImageData> create(unsigned width, unsigned height, Excepti
onState&); |
| 49 static PassRefPtr<ImageData> create(Uint8ClampedArray*, unsigned width, unsi
gned height, ExceptionState&); | 49 static PassRefPtr<ImageData> create(Uint8ClampedArray*, unsigned width, unsi
gned 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*) { } | |
| 57 | |
| 58 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) override; | 56 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) override; |
| 59 | 57 |
| 60 private: | 58 private: |
| 61 explicit ImageData(const IntSize&); | 59 explicit ImageData(const IntSize&); |
| 62 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); | 60 ImageData(const IntSize&, PassRefPtr<Uint8ClampedArray>); |
| 63 | 61 |
| 64 IntSize m_size; | 62 IntSize m_size; |
| 65 RefPtr<Uint8ClampedArray> m_data; | 63 RefPtr<Uint8ClampedArray> m_data; |
| 66 }; | 64 }; |
| 67 | 65 |
| 68 } // namespace blink | 66 } // namespace blink |
| 69 | 67 |
| 70 #endif // ImageData_h | 68 #endif // ImageData_h |
| OLD | NEW |