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

Unified Diff: third_party/WebKit/Source/core/html/Float32ImageData.h

Issue 2652393002: Float32ImageData, PerformanceObserver: no finalization needed. (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/timing/PerformanceObserver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/Float32ImageData.h
diff --git a/third_party/WebKit/Source/core/html/Float32ImageData.h b/third_party/WebKit/Source/core/html/Float32ImageData.h
index 73a6b9047073eb926807a7fa01abaf28a133f09e..5247febc1d5b37e34f62c86fd23f015edcf6019d 100644
--- a/third_party/WebKit/Source/core/html/Float32ImageData.h
+++ b/third_party/WebKit/Source/core/html/Float32ImageData.h
@@ -21,7 +21,7 @@ namespace blink {
class ExceptionState;
class CORE_EXPORT Float32ImageData final
- : public GarbageCollectedFinalized<Float32ImageData>,
+ : public GarbageCollected<Float32ImageData>,
public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
@@ -59,8 +59,8 @@ class CORE_EXPORT Float32ImageData final
return ImageData::getImageDataColorSpaceName(m_colorSpace);
}
ImageDataColorSpace imageDataColorSpace() { return m_colorSpace; }
- const DOMFloat32Array* data() const { return m_data.get(); }
- DOMFloat32Array* data() { return m_data.get(); }
+ const DOMFloat32Array* data() const { return m_data; }
+ DOMFloat32Array* data() { return m_data; }
DEFINE_INLINE_TRACE() { visitor->trace(m_data); }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/timing/PerformanceObserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698