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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLExtension.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/modules/webgl/WebGLExtension.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLExtension.h b/third_party/WebKit/Source/modules/webgl/WebGLExtension.h
index 6715d0f1b584135f38cb79b5023f0927bb4cec56..255b25f3ca670eb0647b07714fa3e30d725b897c 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLExtension.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLExtension.h
@@ -45,7 +45,7 @@ public:
WebGLRenderingContextBase* context() const { return m_context.get(); }
private:
- RefPtrWillBeMember<WebGLRenderingContextBase> m_context;
+ Member<WebGLRenderingContextBase> m_context;
};
class WebGLExtension : public GarbageCollectedFinalized<WebGLExtension>, public ScriptWrappable {
@@ -79,7 +79,7 @@ protected:
private:
friend WebGLExtensionScopedContext;
- RawPtrWillBeWeakMember<WebGLRenderingContextBase> m_context;
+ WeakMember<WebGLRenderingContextBase> m_context;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698