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

Unified Diff: third_party/WebKit/Source/web/WebDOMEvent.cpp

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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/web/WebDOMEvent.cpp
diff --git a/third_party/WebKit/Source/web/WebDOMEvent.cpp b/third_party/WebKit/Source/web/WebDOMEvent.cpp
index 43502ff0cfcb9b99e6d2dbd789740a38ba14c597..3d963a60d941d6ba8038b0a0c77c06f2e6500d53 100644
--- a/third_party/WebKit/Source/web/WebDOMEvent.cpp
+++ b/third_party/WebKit/Source/web/WebDOMEvent.cpp
@@ -45,12 +45,12 @@ void WebDOMEvent::assign(const WebDOMEvent& other)
m_private = other.m_private;
}
-void WebDOMEvent::assign(const RawPtr<Event>& event)
+void WebDOMEvent::assign(Event* event)
{
m_private = event;
}
-WebDOMEvent::WebDOMEvent(const RawPtr<Event>& event)
+WebDOMEvent::WebDOMEvent(Event* event)
: m_private(event)
{
}

Powered by Google App Engine
This is Rietveld 408576698