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

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

Issue 698023005: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Source/core/events/MessageEvent.cpp ('k') | Source/core/html/ImageData.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(DOMUint8ClampedArray*, unsig ned width, unsigned height, ExceptionState&); 49 static PassRefPtrWillBeRawPtr<ImageData> create(DOMUint8ClampedArray*, unsig ned 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 const Uint8ClampedArray* data() const { return m_data->view(); } 54 const Uint8ClampedArray* data() const { return m_data->view(); }
55 Uint8ClampedArray* data() { return m_data->view(); } 55 Uint8ClampedArray* data() { return m_data->view(); }
56 56
57 void trace(Visitor*) { } 57 void trace(Visitor*) { }
58 58
59 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper, v8::Isolate*) override; 59 virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const Wrap perTypeInfo*, v8::Handle<v8::Object> wrapper) override;
60 60
61 private: 61 private:
62 explicit ImageData(const IntSize&); 62 explicit ImageData(const IntSize&);
63 ImageData(const IntSize&, PassRefPtr<DOMUint8ClampedArray>); 63 ImageData(const IntSize&, PassRefPtr<DOMUint8ClampedArray>);
64 64
65 IntSize m_size; 65 IntSize m_size;
66 RefPtr<DOMUint8ClampedArray> m_data; 66 RefPtr<DOMUint8ClampedArray> m_data;
67 }; 67 };
68 68
69 } // namespace blink 69 } // namespace blink
70 70
71 #endif // ImageData_h 71 #endif // ImageData_h
OLDNEW
« no previous file with comments | « Source/core/events/MessageEvent.cpp ('k') | Source/core/html/ImageData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698