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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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/provided_file_system_unittest.cc
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
index 16a7083b7b83230217a6de798664391f37c88a54..5724b11f300f8d37e16a6cd0db510e85b16d38d6 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
@@ -85,8 +85,8 @@ class FakeEventRouter : public extensions::EventRouter {
if (reply_result_ == base::File::FILE_OK) {
base::ListValue value_as_list;
value_as_list.Set(0, new base::StringValue(kFileSystemId));
- value_as_list.Set(1, new base::FundamentalValue(request_id));
- value_as_list.Set(2, new base::FundamentalValue(0) /* execution_time */);
+ value_as_list.Set(1, new base::Value(request_id));
+ value_as_list.Set(2, new base::Value(0) /* execution_time */);
using extensions::api::file_system_provider_internal::
OperationRequestedSuccess::Params;

Powered by Google App Engine
This is Rietveld 408576698