Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(528)

Side by Side Diff: Source/core/html/ImageData.h

Issue 542113003: bindings: Introduces ScriptWrappable::associateWithWrapper in addition to wrap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698