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

Unified Diff: components/policy/core/common/cloud/cloud_policy_client.cc

Issue 1543423002: Switch to standard integer types in components/policy/. (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
Index: components/policy/core/common/cloud/cloud_policy_client.cc
diff --git a/components/policy/core/common/cloud/cloud_policy_client.cc b/components/policy/core/common/cloud/cloud_policy_client.cc
index f222db191d81fa3b119ed3691f9019c15fdee3ff..fda118ba6a5c0f2b8ad67f5dbff4b3419dc3ba09 100644
--- a/components/policy/core/common/cloud/cloud_policy_client.cc
+++ b/components/policy/core/common/cloud/cloud_policy_client.cc
@@ -133,9 +133,8 @@ void CloudPolicyClient::Register(em::DeviceRegisterRequest::Type type,
base::Unretained(this)));
}
-void CloudPolicyClient::SetInvalidationInfo(
- int64 version,
- const std::string& payload) {
+void CloudPolicyClient::SetInvalidationInfo(int64_t version,
+ const std::string& payload) {
invalidation_version_ = version;
invalidation_payload_ = payload;
}

Powered by Google App Engine
This is Rietveld 408576698