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

Unified Diff: third_party/WebKit/Source/core/events/HashChangeEvent.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/events/HashChangeEvent.h
diff --git a/third_party/WebKit/Source/core/events/HashChangeEvent.h b/third_party/WebKit/Source/core/events/HashChangeEvent.h
index 0f3dc20c03997190749e0b667bb1e383e9668ca6..80c5d963b137e691ec749b943d466a0128e5bfb6 100644
--- a/third_party/WebKit/Source/core/events/HashChangeEvent.h
+++ b/third_party/WebKit/Source/core/events/HashChangeEvent.h
@@ -29,19 +29,19 @@ namespace blink {
class HashChangeEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HashChangeEvent> create()
+ static RawPtr<HashChangeEvent> create()
{
return adoptRefWillBeNoop(new HashChangeEvent);
}
- static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL)
+ static RawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL)
{
- return adoptRefWillBeNoop(new HashChangeEvent(oldURL, newURL));
+ return new HashChangeEvent(oldURL, newURL);
}
- static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer)
+ static RawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer)
{
- return adoptRefWillBeNoop(new HashChangeEvent(type, initializer));
+ return new HashChangeEvent(type, initializer);
}
const String& oldURL() const { return m_oldURL; }
« no previous file with comments | « third_party/WebKit/Source/core/events/GestureEvent.cpp ('k') | third_party/WebKit/Source/core/events/InputEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698