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

Unified Diff: third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.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/events/BeforeTextInsertedEvent.h
diff --git a/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h b/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
index 1a6681e714e0f24cfb73ae71a941b6804a96516f..7171c0d3d10564c6b421ff76d420648113f40963 100644
--- a/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
+++ b/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
@@ -34,9 +34,9 @@ class BeforeTextInsertedEvent final : public Event {
public:
~BeforeTextInsertedEvent() override;
- static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text)
+ static RawPtr<BeforeTextInsertedEvent> create(const String& text)
{
- return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
+ return new BeforeTextInsertedEvent(text);
}
const AtomicString& interfaceName() const override;

Powered by Google App Engine
This is Rietveld 408576698