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 |