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

Unified Diff: components/policy/core/common/cloud/external_policy_data_updater.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/external_policy_data_updater.cc
diff --git a/components/policy/core/common/cloud/external_policy_data_updater.cc b/components/policy/core/common/cloud/external_policy_data_updater.cc
index e3039b0e4c1fa8bc4946b78ff4be47953d37de79..f8c5d81c24057703197c7f96ac48dd8d966fd747 100644
--- a/components/policy/core/common/cloud/external_policy_data_updater.cc
+++ b/components/policy/core/common/cloud/external_policy_data_updater.cc
@@ -9,6 +9,7 @@
#include "base/callback.h"
#include "base/location.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/sequenced_task_runner.h"
#include "base/stl_util.h"
#include "components/policy/core/common/cloud/external_policy_data_fetcher.h"
@@ -162,9 +163,8 @@ ExternalPolicyDataUpdater::Request::Request() {
ExternalPolicyDataUpdater::Request::Request(const std::string& url,
const std::string& hash,
- int64 max_size)
- : url(url), hash(hash), max_size(max_size) {
-}
+ int64_t max_size)
+ : url(url), hash(hash), max_size(max_size) {}
bool ExternalPolicyDataUpdater::Request::operator==(
const Request& other) const {

Powered by Google App Engine
This is Rietveld 408576698