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

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

Issue 2799093006: Remove base::BinaryValue (Closed)
Patch Set: Rebase Created 3 years, 8 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 32bfabcef70884e60e586d5d71bb3722a123b825..ef512f2f5b81c62abc4517df0c071f3df9dd7ca5 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
@@ -178,7 +178,7 @@ TEST_F(FileSystemProviderOperationsReadFileTest, OnSuccess) {
value_as_list.Set(0, base::MakeUnique<base::Value>(kFileSystemId));
value_as_list.Set(1, base::MakeUnique<base::Value>(kRequestId));
value_as_list.Set(
- 2, base::BinaryValue::CreateWithCopiedBuffer(data.c_str(), data.size()));
+ 2, base::Value::CreateWithCopiedBuffer(data.c_str(), data.size()));
value_as_list.Set(3, base::MakeUnique<base::Value>(has_more));
value_as_list.Set(4, base::MakeUnique<base::Value>(execution_time));

Powered by Google App Engine
This is Rietveld 408576698