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

Unified Diff: chrome/common/ini_parser_unittest.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.cc ('k') | chrome/utility/media_galleries/picasa_albums_indexer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/common/ini_parser.cc ('k') | chrome/utility/media_galleries/picasa_albums_indexer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698