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

Unified Diff: Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp

Issue 1325893005: Rename DOMFormData to FormData. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « Source/modules/credentialmanager/PasswordCredential.cpp ('k') | Source/modules/fetch/RequestInit.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp
diff --git a/Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp b/Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp
index ad73aec34a2cda2c46ff72d2e4717df734869c9f..3bb896ee39c6316437fedfe0cc9279e9d736e2d1 100644
--- a/Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp
+++ b/Source/modules/fetch/FetchFormDataConsumerHandleTest.cpp
@@ -6,8 +6,7 @@
#include "modules/fetch/FetchFormDataConsumerHandle.h"
#include "core/dom/DOMTypedArray.h"
-#include "core/html/DOMFormData.h"
-#include "core/html/FormDataList.h"
+#include "core/html/FormData.h"
#include "core/loader/ThreadableLoader.h"
#include "core/loader/ThreadableLoaderClient.h"
#include "core/testing/DummyPageHolder.h"
@@ -262,7 +261,7 @@ TEST_F(FetchFormDataConsumerHandleTest, DrainAsFormDataFromArrayBuffer)
TEST_F(FetchFormDataConsumerHandleTest, DrainAsFormDataFromSimpleFormData)
{
- DOMFormData* data = DOMFormData::create(UTF8Encoding());
+ FormData* data = FormData::create(UTF8Encoding());
data->append("name1", "value1");
data->append("name2", "value2");
RefPtr<EncodedFormData> inputFormData = data->createMultiPartFormData();
« no previous file with comments | « Source/modules/credentialmanager/PasswordCredential.cpp ('k') | Source/modules/fetch/RequestInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698