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

Unified Diff: base/data_pack_unittest.cc

Issue 193072: Move StringPiece into the base namespace. It is colliding (Closed)
Patch Set: take 2 Created 11 years, 3 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 | « base/data_pack.h ('k') | base/debug_util_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/data_pack_unittest.cc
diff --git a/base/data_pack_unittest.cc b/base/data_pack_unittest.cc
index 71c37e5554f84a8a7b0e098877f3344e17b51b21..7c2cfeb80ae6c79bd83acaef16aeabf7df2d6e4f 100644
--- a/base/data_pack_unittest.cc
+++ b/base/data_pack_unittest.cc
@@ -24,7 +24,7 @@ TEST_F(DataPackTest, Load) {
base::DataPack pack;
ASSERT_TRUE(pack.Load(data_path_));
- StringPiece data;
+ base::StringPiece data;
ASSERT_TRUE(pack.Get(4, &data));
EXPECT_EQ("this is id 4", data);
ASSERT_TRUE(pack.Get(6, &data));
« no previous file with comments | « base/data_pack.h ('k') | base/debug_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698