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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.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/InputEvent.h
diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h
index f6c46ae58d23d1c655b4c72059353d8d97b9a273..cff834d40a944ea663a8038571e4714a4c2bd854 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.h
+++ b/third_party/WebKit/Source/core/events/InputEvent.h
@@ -14,14 +14,14 @@ class InputEvent final : public UIEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<InputEvent> create()
+ static RawPtr<InputEvent> create()
{
return adoptRefWillBeNoop(new InputEvent);
}
- static PassRefPtrWillBeRawPtr<InputEvent> create(const AtomicString& type, const InputEventInit& initializer)
+ static RawPtr<InputEvent> create(const AtomicString& type, const InputEventInit& initializer)
{
- return adoptRefWillBeNoop(new InputEvent(type, initializer));
+ return new InputEvent(type, initializer);
}
bool isInputEvent() const override;
« no previous file with comments | « third_party/WebKit/Source/core/events/HashChangeEvent.h ('k') | third_party/WebKit/Source/core/events/KeyboardEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698