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

Unified Diff: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
index 1a07d60bf2f9541e325c16518637e58e3af9379c..71688ee1707b1959b8d9617fcd78a2356527e184 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
@@ -42,9 +42,8 @@ class CanvasImageSource;
class HTMLCanvasElement;
class ImageData;
-class CORE_EXPORT CanvasRenderingContext : public NoBaseWillBeGarbageCollectedFinalized<CanvasRenderingContext>, public ScriptWrappable {
+class CORE_EXPORT CanvasRenderingContext : public GarbageCollectedFinalized<CanvasRenderingContext>, public ScriptWrappable {
WTF_MAKE_NONCOPYABLE(CanvasRenderingContext);
- USING_FAST_MALLOC_WILL_BE_REMOVED(CanvasRenderingContext);
public:
virtual ~CanvasRenderingContext() { }
@@ -130,7 +129,7 @@ protected:
virtual void stop() = 0;
private:
- RawPtrWillBeMember<HTMLCanvasElement> m_canvas;
+ Member<HTMLCanvasElement> m_canvas;
HashSet<String> m_cleanURLs;
HashSet<String> m_dirtyURLs;
};

Powered by Google App Engine
This is Rietveld 408576698