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

Unified Diff: third_party/WebKit/Source/core/html/HTMLScriptElement.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/HTMLScriptElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLScriptElement.h b/third_party/WebKit/Source/core/html/HTMLScriptElement.h
index 75d1177bb566c37cee95697182ad2b2292bfdeda..1d1dcae44f1b984ed57ea6990047b2092742777f 100644
--- a/third_party/WebKit/Source/core/html/HTMLScriptElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.h
@@ -34,7 +34,7 @@ namespace blink {
class CORE_EXPORT HTMLScriptElement final : public HTMLElement, public ScriptLoaderClient {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
+ static RawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
String text() { return textFromChildren(); }
void setText(const String&);
@@ -73,9 +73,9 @@ private:
void dispatchLoadEvent() override;
- PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
+ RawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
- OwnPtrWillBeMember<ScriptLoader> m_loader;
+ Member<ScriptLoader> m_loader;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLProgressElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLScriptElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698