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

Unified Diff: content/plugin/plugin_thread.h

Issue 1544273002: Switch to standard integer types in content/. (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: content/plugin/plugin_thread.h
diff --git a/content/plugin/plugin_thread.h b/content/plugin/plugin_thread.h
index 8ad115e21c9c703187ade90546fbf09985c0c49e..b4152d62802bc7e6959bdf43d902574ea4e9f979 100644
--- a/content/plugin/plugin_thread.h
+++ b/content/plugin/plugin_thread.h
@@ -5,7 +5,10 @@
#ifndef CONTENT_PLUGIN_PLUGIN_THREAD_H_
#define CONTENT_PLUGIN_PLUGIN_THREAD_H_
+#include <stdint.h>
+
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/native_library.h"
#include "build/build_config.h"
#include "content/child/child_thread_impl.h"
@@ -40,11 +43,11 @@ class PluginThread : public ChildThreadImpl {
// Callback for when a channel has been created.
void OnCreateChannel(int renderer_id, bool incognito);
- void OnPluginMessage(const std::vector<uint8> &data);
+ void OnPluginMessage(const std::vector<uint8_t>& data);
void OnNotifyRenderersOfPendingShutdown();
#if defined(OS_MACOSX)
void OnAppActivated();
- void OnPluginFocusNotify(uint32 instance_id);
+ void OnPluginFocusNotify(uint32_t instance_id);
#endif
// The plugin module which is preloaded in Init
« no previous file with comments | « content/plugin/plugin_interpose_util_mac.mm ('k') | content/plugin/webplugin_accelerated_surface_proxy_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698