diff options
author | avi <avi@chromium.org> | 2015-12-25 15:27:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-25 23:28:47 +0000 |
commit | f57136c13874f21a4c6885e49d00d3c45bb427ba (patch) | |
tree | d009df408c8384390d7f10dc961742e2c24ead8b /components/plugins/renderer | |
parent | bc5337b805a6249554ca15d8bae77713ace7eff4 (diff) | |
download | chromium_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/plugins/renderer')
5 files changed, 7 insertions, 0 deletions
diff --git a/components/plugins/renderer/loadable_plugin_placeholder.h b/components/plugins/renderer/loadable_plugin_placeholder.h index 6cd4ad8..bc5114e 100644 --- a/components/plugins/renderer/loadable_plugin_placeholder.h +++ b/components/plugins/renderer/loadable_plugin_placeholder.h @@ -5,6 +5,7 @@ #ifndef COMPONENTS_PLUGINS_RENDERER_LOADABLE_PLUGIN_PLACEHOLDER_H_ #define COMPONENTS_PLUGINS_RENDERER_LOADABLE_PLUGIN_PLACEHOLDER_H_ +#include "base/macros.h" #include "base/memory/weak_ptr.h" #include "base/timer/timer.h" #include "components/plugins/renderer/plugin_placeholder.h" diff --git a/components/plugins/renderer/mobile_youtube_plugin.cc b/components/plugins/renderer/mobile_youtube_plugin.cc index f2ec9d6..4b77abd5 100644 --- a/components/plugins/renderer/mobile_youtube_plugin.cc +++ b/components/plugins/renderer/mobile_youtube_plugin.cc @@ -4,6 +4,8 @@ #include "components/plugins/renderer/mobile_youtube_plugin.h" +#include <stddef.h> + #include "base/bind.h" #include "base/bind_helpers.h" #include "base/strings/string_piece.h" diff --git a/components/plugins/renderer/mobile_youtube_plugin.h b/components/plugins/renderer/mobile_youtube_plugin.h index 9d46700..7def319 100644 --- a/components/plugins/renderer/mobile_youtube_plugin.h +++ b/components/plugins/renderer/mobile_youtube_plugin.h @@ -5,6 +5,7 @@ #ifndef COMPONENTS_PLUGINS_RENDERER_MOBILE_YOUTUBE_PLUGIN_H_ #define COMPONENTS_PLUGINS_RENDERER_MOBILE_YOUTUBE_PLUGIN_H_ +#include "base/macros.h" #include "components/plugins/renderer/plugin_placeholder.h" namespace plugins { diff --git a/components/plugins/renderer/plugin_placeholder.h b/components/plugins/renderer/plugin_placeholder.h index 63a1d08..1be42e9 100644 --- a/components/plugins/renderer/plugin_placeholder.h +++ b/components/plugins/renderer/plugin_placeholder.h @@ -5,6 +5,7 @@ #ifndef COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ #define COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ +#include "base/macros.h" #include "base/memory/weak_ptr.h" #include "components/plugins/renderer/webview_plugin.h" #include "content/public/renderer/render_frame_observer.h" diff --git a/components/plugins/renderer/webview_plugin.cc b/components/plugins/renderer/webview_plugin.cc index c670751..2869a77 100644 --- a/components/plugins/renderer/webview_plugin.cc +++ b/components/plugins/renderer/webview_plugin.cc @@ -4,6 +4,8 @@ #include "components/plugins/renderer/webview_plugin.h" +#include <stddef.h> + #include "base/message_loop/message_loop.h" #include "base/metrics/histogram_macros.h" #include "base/numerics/safe_conversions.h" |