| 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 {
|
|
|