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

Unified Diff: webkit/forms/form_data.cc

Issue 11000016: Move forms/ out of webkit/. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to review Created 8 years, 2 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/forms/form_data.h ('k') | webkit/forms/form_data_predictions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/forms/form_data.cc
diff --git a/webkit/forms/form_data.cc b/webkit/forms/form_data.cc
deleted file mode 100644
index ea8514651e98ee577a2464d89fd1513b2c2e203b..0000000000000000000000000000000000000000
--- a/webkit/forms/form_data.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/forms/form_data.h"
-
-#include "base/string_util.h"
-
-namespace webkit {
-namespace forms {
-
-FormData::FormData()
- : user_submitted(false) {
-}
-
-FormData::FormData(const FormData& data)
- : name(data.name),
- method(data.method),
- origin(data.origin),
- action(data.action),
- user_submitted(data.user_submitted),
- fields(data.fields) {
-}
-
-FormData::~FormData() {
-}
-
-bool FormData::operator==(const FormData& form) const {
- return (name == form.name &&
- StringToLowerASCII(method) == StringToLowerASCII(form.method) &&
- origin == form.origin &&
- action == form.action &&
- user_submitted == form.user_submitted &&
- fields == form.fields);
-}
-
-} // namespace forms
-} // namespace webkit
« no previous file with comments | « webkit/forms/form_data.h ('k') | webkit/forms/form_data_predictions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698