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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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
Index: chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
index 7ef9e419c1d348dfa061658c4f04da88fb912618..4578cc69601cadaa57a44979966173605dd3ac46 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
@@ -175,7 +175,7 @@ TEST_F(FileSystemProviderOperationsReadFileTest, OnSuccess) {
const int execution_time = 0;
base::ListValue value_as_list;
- value_as_list.Set(0, new base::StringValue(kFileSystemId));
+ value_as_list.Set(0, new base::Value(kFileSystemId));
value_as_list.Set(1, new base::Value(kRequestId));
value_as_list.Set(
2, base::BinaryValue::CreateWithCopiedBuffer(data.c_str(), data.size()));

Powered by Google App Engine
This is Rietveld 408576698