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

Unified Diff: components/invalidation/impl/push_client_channel.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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/invalidation/impl/push_client_channel.cc
diff --git a/components/invalidation/impl/push_client_channel.cc b/components/invalidation/impl/push_client_channel.cc
index 5541604f751d3ef4b6cb6717bcccb2bf94bc973a..98e11835a002ed3c52b4937871b5ae2e6cd7a0d0 100644
--- a/components/invalidation/impl/push_client_channel.cc
+++ b/components/invalidation/impl/push_client_channel.cc
@@ -5,6 +5,7 @@
#include "components/invalidation/impl/push_client_channel.h"
#include "base/stl_util.h"
+#include "build/build_config.h"
#include "components/invalidation/impl/notifier_reason_util.h"
#include "google/cacheinvalidation/client_gateway.pb.h"
#include "google/cacheinvalidation/types.pb.h"
@@ -84,7 +85,7 @@ void PushClientChannel::OnIncomingNotification(
const notifier::Notification& notification) {
std::string message;
std::string service_context;
- int64 scheduling_hash;
+ int64_t scheduling_hash;
if (!DecodeMessage(
notification.data, &message, &service_context, &scheduling_hash)) {
DLOG(ERROR) << "Could not parse ClientGatewayMessage";
@@ -100,14 +101,14 @@ const std::string& PushClientChannel::GetServiceContextForTest() const {
return service_context_;
}
-int64 PushClientChannel::GetSchedulingHashForTest() const {
+int64_t PushClientChannel::GetSchedulingHashForTest() const {
return scheduling_hash_;
}
std::string PushClientChannel::EncodeMessageForTest(
const std::string& message,
const std::string& service_context,
- int64 scheduling_hash) {
+ int64_t scheduling_hash) {
std::string encoded_message;
EncodeMessage(&encoded_message, message, service_context, scheduling_hash);
return encoded_message;
@@ -116,14 +117,14 @@ std::string PushClientChannel::EncodeMessageForTest(
bool PushClientChannel::DecodeMessageForTest(const std::string& data,
std::string* message,
std::string* service_context,
- int64* scheduling_hash) {
+ int64_t* scheduling_hash) {
return DecodeMessage(data, message, service_context, scheduling_hash);
}
void PushClientChannel::EncodeMessage(std::string* encoded_message,
const std::string& message,
const std::string& service_context,
- int64 scheduling_hash) {
+ int64_t scheduling_hash) {
ipc::invalidation::ClientGatewayMessage envelope;
envelope.set_is_client_to_server(true);
if (!service_context.empty()) {
@@ -137,7 +138,7 @@ void PushClientChannel::EncodeMessage(std::string* encoded_message,
bool PushClientChannel::DecodeMessage(const std::string& data,
std::string* message,
std::string* service_context,
- int64* scheduling_hash) {
+ int64_t* scheduling_hash) {
ipc::invalidation::ClientGatewayMessage envelope;
if (!envelope.ParseFromString(data)) {
return false;
« no previous file with comments | « components/invalidation/impl/push_client_channel.h ('k') | components/invalidation/impl/push_client_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698