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

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

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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 72931438b28c083093bb41c4b09876923382c0fd..7ef9e419c1d348dfa061658c4f04da88fb912618 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
@@ -176,11 +176,11 @@ TEST_F(FileSystemProviderOperationsReadFileTest, OnSuccess) {
base::ListValue value_as_list;
value_as_list.Set(0, new base::StringValue(kFileSystemId));
- value_as_list.Set(1, new base::FundamentalValue(kRequestId));
+ value_as_list.Set(1, new base::Value(kRequestId));
value_as_list.Set(
2, base::BinaryValue::CreateWithCopiedBuffer(data.c_str(), data.size()));
- value_as_list.Set(3, new base::FundamentalValue(has_more));
- value_as_list.Set(4, new base::FundamentalValue(execution_time));
+ value_as_list.Set(3, new base::Value(has_more));
+ value_as_list.Set(4, new base::Value(execution_time));
std::unique_ptr<Params> params(Params::Create(value_as_list));
ASSERT_TRUE(params.get());

Powered by Google App Engine
This is Rietveld 408576698