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

Unified Diff: third_party/WebKit/Source/core/events/AutocompleteErrorEvent.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/AutocompleteErrorEvent.h
diff --git a/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h b/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
index 51fa9abbf5e4d94231835153ebacee34507161d3..2f8062cba906c4322ebf63c718e48c9938ee90d5 100644
--- a/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
+++ b/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
@@ -33,19 +33,19 @@ namespace blink {
class AutocompleteErrorEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create()
+ static RawPtr<AutocompleteErrorEvent> create()
{
return adoptRefWillBeNoop(new AutocompleteErrorEvent);
}
- static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& reason)
+ static RawPtr<AutocompleteErrorEvent> create(const String& reason)
{
- return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason));
+ return new AutocompleteErrorEvent(reason);
}
- static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer)
+ static RawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer)
{
- return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initializer));
+ return new AutocompleteErrorEvent(eventType, initializer);
}
const String& reason() const { return m_reason; }

Powered by Google App Engine
This is Rietveld 408576698