Put autofill code into namepspace autofill Step 2
Move all code in components/autofill into autofill namespace.

BUG=140037, 165534
[email protected]  (only namespace change)

Review URL: https://chromiumcodereview.appspot.com/14089006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193982 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/components/autofill/browser/autofill_xml_parser.cc b/components/autofill/browser/autofill_xml_parser.cc
index a4e5a3d..5ac92fd 100644
--- a/components/autofill/browser/autofill_xml_parser.cc
+++ b/components/autofill/browser/autofill_xml_parser.cc
@@ -11,6 +11,8 @@
 #include "components/autofill/browser/autofill_server_field_info.h"
 #include "third_party/libjingle/source/talk/xmllite/qname.h"
 
+namespace autofill {
+
 AutofillXmlParser::AutofillXmlParser()
     : succeeded_(true) {
 }
@@ -195,3 +197,5 @@
   }
   return value;
 }
+
+}  // namespace autofill