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

Unified Diff: chrome/browser/ui/webui/invalidations_message_handler.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/ui/webui/invalidations_message_handler.cc
diff --git a/chrome/browser/ui/webui/invalidations_message_handler.cc b/chrome/browser/ui/webui/invalidations_message_handler.cc
index e39453502d7fb569ad5baf6cb3082dd3c6796777..e6cf9d9bc8a0fb658d41753546e5eaea161c32a0 100644
--- a/chrome/browser/ui/webui/invalidations_message_handler.cc
+++ b/chrome/browser/ui/webui/invalidations_message_handler.cc
@@ -90,7 +90,7 @@ void InvalidationsMessageHandler::OnStateChange(
std::string state(syncer::InvalidatorStateToString(new_state));
web_ui()->CallJavascriptFunctionUnsafe(
"chrome.invalidations.updateInvalidatorState", base::StringValue(state),
- base::FundamentalValue(last_changed_timestamp.ToJsTime()));
+ base::Value(last_changed_timestamp.ToJsTime()));
}
void InvalidationsMessageHandler::OnUpdateIds(

Powered by Google App Engine
This is Rietveld 408576698