commit | e217c563ed3adcee9d4fd6135b260e8084c12401 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Apr 12 19:11:48 2013 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Apr 12 19:11:48 2013 |
tree | 11191824d2cc61047e51ec89454a0f1d8c58d852 | |
parent | 120e89bba3abf6f96d1bad59ac1dc9c68be26b2e [diff] [blame] |
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