Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2911)

Unified Diff: chrome/common/ini_parser.cc

Issue 453703002: Move ini_parser from base to chrome/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: base:: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/ini_parser.h ('k') | chrome/common/ini_parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/common/ini_parser.h ('k') | chrome/common/ini_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698