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