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

Unified Diff: third_party/WebKit/Source/core/html/FormData.h

Issue 2616923002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Fix errors Created 3 years, 11 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 | « third_party/WebKit/Source/core/frame/History.idl ('k') | third_party/WebKit/Source/core/html/FormData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/FormData.h
diff --git a/third_party/WebKit/Source/core/html/FormData.h b/third_party/WebKit/Source/core/html/FormData.h
index c11e86a4affed8ad35e00aeec3cc1453d8251b55..046cdbea2d3ae78c732dd3b2600a67b22bf94c4f 100644
--- a/third_party/WebKit/Source/core/html/FormData.h
+++ b/third_party/WebKit/Source/core/html/FormData.h
@@ -33,7 +33,6 @@
#include "bindings/core/v8/FileOrUSVString.h"
#include "bindings/core/v8/Iterable.h"
-#include "bindings/core/v8/ScriptState.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
#include "platform/network/EncodedFormData.h"
@@ -44,6 +43,7 @@ namespace blink {
class Blob;
class HTMLFormElement;
+class ScriptState;
// Typedef from FormData.idl:
typedef FileOrUSVString FormDataEntryValue;
@@ -66,7 +66,7 @@ class CORE_EXPORT FormData final
// FormData IDL interface.
void append(const String& name, const String& value);
- void append(ExecutionContext*,
+ void append(ScriptState*,
const String& name,
Blob*,
const String& filename = String());
« no previous file with comments | « third_party/WebKit/Source/core/frame/History.idl ('k') | third_party/WebKit/Source/core/html/FormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698