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

Unified Diff: webkit/forms/form_field.cc

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 years 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_field.h ('k') | webkit/forms/form_field_predictions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/forms/form_field.cc
diff --git a/webkit/glue/form_field.cc b/webkit/forms/form_field.cc
similarity index 94%
rename from webkit/glue/form_field.cc
rename to webkit/forms/form_field.cc
index d9843b9b0c62615729706db05ac6551255db232d..1c9a0a715d6b2e2a2c22e5ef08c48f4843c96cde 100644
--- a/webkit/glue/form_field.cc
+++ b/webkit/forms/form_field.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "webkit/glue/form_field.h"
+#include "webkit/forms/form_field.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
@@ -17,7 +17,8 @@ using WebKit::WebOptionElement;
using WebKit::WebSelectElement;
using WebKit::WebVector;
-namespace webkit_glue {
+namespace webkit {
+namespace forms {
FormField::FormField()
: max_length(0),
@@ -64,4 +65,5 @@ std::ostream& operator<<(std::ostream& os, const FormField& field) {
<< (field.should_autocomplete ? "true" : "false");
}
-} // namespace webkit_glue
+} // namespace forms
+} // namespace webkit
« no previous file with comments | « webkit/forms/form_field.h ('k') | webkit/forms/form_field_predictions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698