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/data_driven_test.h b/components/autofill/browser/data_driven_test.h
index 36cf8725..27fa2f9 100644
--- a/components/autofill/browser/data_driven_test.h
+++ b/components/autofill/browser/data_driven_test.h
@@ -10,6 +10,8 @@
 #include "base/files/file_path.h"
 #include "base/string16.h"
 
+namespace autofill {
+
 // A convenience class for implementing data-driven tests. Subclassers need only
 // implement the conversion of serialized input data to serialized output data
 // and provide a set of input files. For each input file, on the first run, a
@@ -47,4 +49,6 @@
   DISALLOW_COPY_AND_ASSIGN(DataDrivenTest);
 };
 
+}  // namespace autofill
+
 #endif  // COMPONENTS_AUTOFILL_BROWSER_DATA_DRIVEN_TEST_H_