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

Unified Diff: webkit/glue/webplugin_impl.cc

Issue 62011: WebKit merge 42132:42199 (Chrome side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 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
« no previous file with comments | « WEBKIT_MERGE_REVISION ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webplugin_impl.cc
===================================================================
--- webkit/glue/webplugin_impl.cc (revision 13085)
+++ webkit/glue/webplugin_impl.cc (working copy)
@@ -12,6 +12,7 @@
#include "EventNames.h"
#include "FloatPoint.h"
#include "FormData.h"
+#include "FormState.h"
#include "FocusController.h"
#include "Frame.h"
#include "FrameLoader.h"
@@ -19,6 +20,7 @@
#include "FrameTree.h"
#include "FrameView.h"
#include "GraphicsContext.h"
+#include "HTMLFormElement.h"
#include "HTMLNames.h"
#include "HTMLPlugInElement.h"
#include "IntRect.h"
@@ -514,13 +516,12 @@
WebCore::FrameLoader *loader = frame()->loader();
// we actually don't know whether usergesture is true or false,
// passing true since all we can do is assume it is okay.
- loader->loadFrameRequestWithFormAndValues(
+ loader->loadFrameRequest(
load_request,
false, // lock history
false, // lock back forward list
0, // event
- 0, // form element
- HashMap<WebCore::String, WebCore::String>());
+ 0); // form state
// load() can cause the frame to go away.
if (webframe_) {
« no previous file with comments | « WEBKIT_MERGE_REVISION ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698