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

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, 10 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 92fe4995903d3e7d61ba21d23fc0412cebdb3914..611b997ccea21b72ff6befc4c520b33af2f3f278 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
@@ -43,9 +43,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() { }
@@ -126,7 +125,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