Small FrameLoader refactoring A couple of the load methods take a whole bunch of arguments broken out from a FrameLoadRequest. The callers already *have* a FrameLoadRequest. They should just pass along the entire FrameLoadRequest.
Created attachment 253902 [details] Patch v1
Comment on attachment 253902 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=253902&action=review lgtm except one thing: > Source/WebCore/loader/FrameLoader.cpp:918 > + FrameLoadRequest frameLoadRequest(m_frame.document()->securityOrigin(), ResourceRequest(url), "_self", LockHistory::No, LockBackForwardList::No, ShouldSendReferrer::MaybeSendReferrer, AllowNavigationToInvalidURL::Yes, NewFrameOpenerPolicy::Suppress, ReplaceDocumentIfJavaScriptURL); I think this should have LockBackForwardList::Yes instead of no.
http://trac.webkit.org/changeset/184987