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

Unified Diff: Source/core/loader/NavigationAction.cpp

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/loader/NavigationAction.cpp
diff --git a/Source/core/loader/NavigationAction.cpp b/Source/core/loader/NavigationAction.cpp
index 07853724c189272c751862915711b47e2dc55640..c774000dcf30922e38c10da3bd977f23d54a6c4b 100644
--- a/Source/core/loader/NavigationAction.cpp
+++ b/Source/core/loader/NavigationAction.cpp
@@ -55,10 +55,10 @@ NavigationAction::NavigationAction()
}
NavigationAction::NavigationAction(const ResourceRequest& resourceRequest, FrameLoadType frameLoadType,
- bool isFormSubmission, PassRefPtr<Event> passEvent)
+ bool isFormSubmission, PassRefPtrWillBeRawPtr<Event> passEvent)
: m_resourceRequest(resourceRequest)
{
- RefPtr<Event> event = passEvent;
+ RefPtrWillBeRawPtr<Event> event = passEvent;
m_type = navigationType(frameLoadType, isFormSubmission || resourceRequest.httpBody(), event);
m_eventTimeStamp = event ? event->timeStamp() : 0;

Powered by Google App Engine
This is Rietveld 408576698