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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h
index aa246b60d287ffac97621e1316236eb625f6bada..c1572fe209e2575462d6bb07cd32d300507b9861 100644
--- a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h
+++ b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h
@@ -65,7 +65,7 @@ public:
bool isFeatureAllowed() const;
bool validateOptions(const AtomicString& type, QualifiedName& tagName, ExceptionState&);
- PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> createCallbacks();
+ RawPtr<CustomElementLifecycleCallbacks> createCallbacks();
bool createConstructor(Document*, CustomElementDefinition*, ExceptionState&);
bool didRegisterDefinition(CustomElementDefinition*) const;
@@ -83,7 +83,7 @@ private:
const ElementRegistrationOptions& m_options;
v8::Local<v8::Object> m_prototype;
v8::Local<v8::Function> m_constructor;
- RefPtrWillBeMember<V8CustomElementLifecycleCallbacks> m_callbacks;
+ Member<V8CustomElementLifecycleCallbacks> m_callbacks;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698