summaryrefslogtreecommitdiffstats
path: root/components/resource_provider
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-25 15:27:45 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-25 23:28:47 +0000
commitf57136c13874f21a4c6885e49d00d3c45bb427ba (patch)
treed009df408c8384390d7f10dc961742e2c24ead8b /components/resource_provider
parentbc5337b805a6249554ca15d8bae77713ace7eff4 (diff)
downloadchromium_src-f57136c13874f21a4c6885e49d00d3c45bb427ba.zip
chromium_src-f57136c13874f21a4c6885e49d00d3c45bb427ba.tar.gz
chromium_src-f57136c13874f21a4c6885e49d00d3c45bb427ba.tar.bz2
Switch to standard integer types in components/, part 3 of 4.
BUG=138542 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/1551433002 Cr-Commit-Position: refs/heads/master@{#366874}
Diffstat (limited to 'components/resource_provider')
-rw-r--r--components/resource_provider/file_utils.cc3
-rw-r--r--components/resource_provider/file_utils_unittest.cc3
-rw-r--r--components/resource_provider/public/cpp/resource_loader.cc2
-rw-r--r--components/resource_provider/public/cpp/resource_loader.h2
-rw-r--r--components/resource_provider/resource_provider_app.h1
-rw-r--r--components/resource_provider/resource_provider_apptest.cc2
-rw-r--r--components/resource_provider/resource_provider_impl.cc2
-rw-r--r--components/resource_provider/resource_provider_impl.h1
8 files changed, 15 insertions, 1 deletions
diff --git a/components/resource_provider/file_utils.cc b/components/resource_provider/file_utils.cc
index b4be730..1b740369 100644
--- a/components/resource_provider/file_utils.cc
+++ b/components/resource_provider/file_utils.cc
@@ -4,10 +4,13 @@
#include "components/resource_provider/file_utils.h"
+#include <stddef.h>
+
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
+#include "build/build_config.h"
namespace resource_provider {
namespace {
diff --git a/components/resource_provider/file_utils_unittest.cc b/components/resource_provider/file_utils_unittest.cc
index 0e33fe1..914eddd 100644
--- a/components/resource_provider/file_utils_unittest.cc
+++ b/components/resource_provider/file_utils_unittest.cc
@@ -4,7 +4,10 @@
#include "components/resource_provider/file_utils.h"
+#include <stddef.h>
+
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "testing/gtest/include/gtest/gtest.h"
diff --git a/components/resource_provider/public/cpp/resource_loader.cc b/components/resource_provider/public/cpp/resource_loader.cc
index 023418b..0b1ea3b 100644
--- a/components/resource_provider/public/cpp/resource_loader.cc
+++ b/components/resource_provider/public/cpp/resource_loader.cc
@@ -4,6 +4,8 @@
#include "components/resource_provider/public/cpp/resource_loader.h"
+#include <stddef.h>
+
#include "base/bind.h"
#include "base/files/file.h"
#include "mojo/application/public/cpp/application_impl.h"
diff --git a/components/resource_provider/public/cpp/resource_loader.h b/components/resource_provider/public/cpp/resource_loader.h
index 771d689..5f17652 100644
--- a/components/resource_provider/public/cpp/resource_loader.h
+++ b/components/resource_provider/public/cpp/resource_loader.h
@@ -10,7 +10,7 @@
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "components/resource_provider/public/interfaces/resource_provider.mojom.h"
#include "mojo/platform_handle/platform_handle.h"
diff --git a/components/resource_provider/resource_provider_app.h b/components/resource_provider/resource_provider_app.h
index 6b0a238..6bd9f9f 100644
--- a/components/resource_provider/resource_provider_app.h
+++ b/components/resource_provider/resource_provider_app.h
@@ -7,6 +7,7 @@
#include <map>
+#include "base/macros.h"
#include "components/resource_provider/public/interfaces/resource_provider.mojom.h"
#include "mojo/application/public/cpp/application_delegate.h"
#include "mojo/application/public/cpp/interface_factory.h"
diff --git a/components/resource_provider/resource_provider_apptest.cc b/components/resource_provider/resource_provider_apptest.cc
index a5fbcae..8e7c4d8 100644
--- a/components/resource_provider/resource_provider_apptest.cc
+++ b/components/resource_provider/resource_provider_apptest.cc
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stddef.h>
#include <stdint.h>
#include "base/containers/scoped_ptr_hash_map.h"
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/run_loop.h"
#include "components/resource_provider/public/cpp/resource_loader.h"
#include "components/resource_provider/public/interfaces/resource_provider.mojom.h"
diff --git a/components/resource_provider/resource_provider_impl.cc b/components/resource_provider/resource_provider_impl.cc
index 628c16a..8b0168a59 100644
--- a/components/resource_provider/resource_provider_impl.cc
+++ b/components/resource_provider/resource_provider_impl.cc
@@ -4,6 +4,8 @@
#include "components/resource_provider/resource_provider_impl.h"
+#include <stddef.h>
+
#include "base/bind.h"
#include "base/files/file_util.h"
#include "base/location.h"
diff --git a/components/resource_provider/resource_provider_impl.h b/components/resource_provider/resource_provider_impl.h
index 8884a5b..8f319d3 100644
--- a/components/resource_provider/resource_provider_impl.h
+++ b/components/resource_provider/resource_provider_impl.h
@@ -6,6 +6,7 @@
#define COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_IMPL_H_
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "components/resource_provider/public/interfaces/resource_provider.mojom.h"
namespace resource_provider {