summaryrefslogtreecommitdiffstats
path: root/components/component_updater
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-25 15:16:33 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-25 23:17:57 +0000
commitbc5337b805a6249554ca15d8bae77713ace7eff4 (patch)
tree63dce42340dcc3acb86647cecf8d34ffbc6962fb /components/component_updater
parent3670b521843470e07ae75062235e3c13c85b1e6f (diff)
downloadchromium_src-bc5337b805a6249554ca15d8bae77713ace7eff4.zip
chromium_src-bc5337b805a6249554ca15d8bae77713ace7eff4.tar.gz
chromium_src-bc5337b805a6249554ca15d8bae77713ace7eff4.tar.bz2
Switch to standard integer types in components/, part 1 of 4.
BUG=138542 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/1546143002 Cr-Commit-Position: refs/heads/master@{#366873}
Diffstat (limited to 'components/component_updater')
-rw-r--r--components/component_updater/component_updater_service_internal.h1
-rw-r--r--components/component_updater/configurator_impl.cc2
-rw-r--r--components/component_updater/pref_names.cc1
3 files changed, 4 insertions, 0 deletions
diff --git a/components/component_updater/component_updater_service_internal.h b/components/component_updater/component_updater_service_internal.h
index c91332c..29c5d31 100644
--- a/components/component_updater/component_updater_service_internal.h
+++ b/components/component_updater/component_updater_service_internal.h
@@ -9,6 +9,7 @@
#include <string>
#include <vector>
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/sequenced_task_runner.h"
diff --git a/components/component_updater/configurator_impl.cc b/components/component_updater/configurator_impl.cc
index fb8f1db..407da85 100644
--- a/components/component_updater/configurator_impl.cc
+++ b/components/component_updater/configurator_impl.cc
@@ -4,6 +4,8 @@
#include "components/component_updater/configurator_impl.h"
+#include <stddef.h>
+
#include <algorithm>
#include "base/command_line.h"
diff --git a/components/component_updater/pref_names.cc b/components/component_updater/pref_names.cc
index 87554e4..98e9fca 100644
--- a/components/component_updater/pref_names.cc
+++ b/components/component_updater/pref_names.cc
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "build/build_config.h"
#include "components/component_updater/pref_names.h"
namespace prefs {