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

Unified Diff: Source/bindings/v8/custom/V8FormDataCustom.cpp

Issue 14882009: Remove DOM prefix from several IDL interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 7 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/bindings/v8/custom/V8FormDataCustom.cpp
diff --git a/Source/bindings/v8/custom/V8DOMFormDataCustom.cpp b/Source/bindings/v8/custom/V8FormDataCustom.cpp
similarity index 92%
rename from Source/bindings/v8/custom/V8DOMFormDataCustom.cpp
rename to Source/bindings/v8/custom/V8FormDataCustom.cpp
index 12d43bf23274f3f63b5dec39c92816204b1b57bc..f078e7288e0245501f83cb69b9f8ba93d781140f 100644
--- a/Source/bindings/v8/custom/V8DOMFormDataCustom.cpp
+++ b/Source/bindings/v8/custom/V8FormDataCustom.cpp
@@ -29,7 +29,7 @@
*/
#include "config.h"
-#include "V8DOMFormData.h"
+#include "V8FormData.h"
#include "V8Blob.h"
#include "V8HTMLFormElement.h"
@@ -39,7 +39,7 @@
namespace WebCore {
-v8::Handle<v8::Value> V8DOMFormData::constructorCustom(const v8::Arguments& args)
+v8::Handle<v8::Value> V8FormData::constructorCustom(const v8::Arguments& args)
{
HTMLFormElement* form = 0;
if (args.Length() > 0 && V8HTMLFormElement::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())))
@@ -51,12 +51,12 @@ v8::Handle<v8::Value> V8DOMFormData::constructorCustom(const v8::Arguments& args
return wrapper;
}
-v8::Handle<v8::Value> V8DOMFormData::appendMethodCustom(const v8::Arguments& args)
+v8::Handle<v8::Value> V8FormData::appendMethodCustom(const v8::Arguments& args)
{
if (args.Length() < 2)
return throwError(v8SyntaxError, "Not enough arguments", args.GetIsolate());
- DOMFormData* domFormData = V8DOMFormData::toNative(args.Holder());
+ DOMFormData* domFormData = V8FormData::toNative(args.Holder());
String name = toWebCoreStringWithNullCheck(args[0]);
« no previous file with comments | « Source/bindings/v8/custom/V8DOMFormDataCustom.cpp ('k') | Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698