| Index: chrome/common/ini_parser_unittest.cc
 | 
| diff --git a/base/ini_parser_unittest.cc b/chrome/common/ini_parser_unittest.cc
 | 
| similarity index 96%
 | 
| rename from base/ini_parser_unittest.cc
 | 
| rename to chrome/common/ini_parser_unittest.cc
 | 
| index ff90f6c8fc7f686a2600a85a0180fe5829063766..bd147d37ebf0bdc6be4bbd0aeb50a8c9fe880a4b 100644
 | 
| --- a/base/ini_parser_unittest.cc
 | 
| +++ b/chrome/common/ini_parser_unittest.cc
 | 
| @@ -5,11 +5,9 @@
 | 
|  #include <string>
 | 
|  #include <vector>
 | 
|  
 | 
| -#include "base/ini_parser.h"
 | 
| +#include "chrome/common/ini_parser.h"
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
|  
 | 
| -namespace base {
 | 
| -
 | 
|  namespace {
 | 
|  
 | 
|  struct TestTriplet {
 | 
| @@ -115,7 +113,7 @@ TEST(INIParserTest, DictionaryValueINIParser) {
 | 
|        "key.4=value4\n"
 | 
|        "key5=value5\n");
 | 
|  
 | 
| -  const DictionaryValue& root = test_parser.root();
 | 
| +  const base::DictionaryValue& root = test_parser.root();
 | 
|    std::string value;
 | 
|    EXPECT_TRUE(root.GetString("section1.key1", &value));
 | 
|    EXPECT_EQ("value1", value);
 | 
| @@ -127,5 +125,3 @@ TEST(INIParserTest, DictionaryValueINIParser) {
 | 
|  }
 | 
|  
 | 
|  }  // namespace
 | 
| -
 | 
| -}  // namespace base
 | 
| 
 |