| Index: chrome/common/ini_parser.cc
|
| diff --git a/base/ini_parser.cc b/chrome/common/ini_parser.cc
|
| similarity index 96%
|
| rename from base/ini_parser.cc
|
| rename to chrome/common/ini_parser.cc
|
| index 7a2bd1c911bd8028cc4f83636d2df2d9b6dd0285..28da0f64b7d71fa3c25f0785058356026f9cffb8 100644
|
| --- a/base/ini_parser.cc
|
| +++ b/chrome/common/ini_parser.cc
|
| @@ -2,13 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/ini_parser.h"
|
| +#include "chrome/common/ini_parser.h"
|
|
|
| #include "base/logging.h"
|
| #include "base/strings/string_tokenizer.h"
|
|
|
| -namespace base {
|
| -
|
| INIParser::INIParser() : used_(false) {}
|
|
|
| INIParser::~INIParser() {}
|
| @@ -62,5 +60,3 @@ void DictionaryValueINIParser::HandleTriplet(const std::string& section,
|
| key.find('.') == std::string::npos)
|
| root_.SetString(section + "." + key, value);
|
| }
|
| -
|
| -} // namespace base
|
|
|