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

Unified Diff: remoting/host/gcd_rest_client.cc

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « remoting/host/gcd_rest_client.h ('k') | remoting/host/gcd_state_updater.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/gcd_rest_client.cc
diff --git a/remoting/host/gcd_rest_client.cc b/remoting/host/gcd_rest_client.cc
index 0a4ac48c498fc43deffe72ed827917796ab2132c..a6dfbd4ceeb6fb02f0130b75c6071f0427cc6b19 100644
--- a/remoting/host/gcd_rest_client.cc
+++ b/remoting/host/gcd_rest_client.cc
@@ -4,6 +4,8 @@
#include "remoting/host/gcd_rest_client.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/json/json_writer.h"
@@ -49,7 +51,7 @@ void GcdRestClient::PatchState(
// }
//
// Note that |now| is deliberately using a double to hold an integer
- // value because |DictionaryValue| doesn't support int64 values, and
+ // value because |DictionaryValue| doesn't support int64_t values, and
// GCD doesn't accept fractional values.
double now = clock_->Now().ToJavaTime();
scoped_ptr<base::DictionaryValue> patch_dict(new base::DictionaryValue);
« no previous file with comments | « remoting/host/gcd_rest_client.h ('k') | remoting/host/gcd_state_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698