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

Unified Diff: content/child/plugin_messages.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
« no previous file with comments | « content/child/permissions/permission_dispatcher.cc ('k') | content/child/power_monitor_broadcast_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/plugin_messages.h
diff --git a/content/child/plugin_messages.h b/content/child/plugin_messages.h
index f742338a0caaf950bbd3b392876b491abb1666f0..8cf591b3d7f24e961fc7836e92b0ed14857d85bc 100644
--- a/content/child/plugin_messages.h
+++ b/content/child/plugin_messages.h
@@ -4,6 +4,8 @@
//
// Multiply-included message file, hence no include guard.
+#include <stdint.h>
+
#include "build/build_config.h"
#include "content/child/plugin_param_traits.h"
#include "content/common/content_export.h"
@@ -38,8 +40,8 @@ IPC_STRUCT_BEGIN(PluginMsg_DidReceiveResponseParams)
IPC_STRUCT_MEMBER(unsigned long, id)
IPC_STRUCT_MEMBER(std::string, mime_type)
IPC_STRUCT_MEMBER(std::string, headers)
- IPC_STRUCT_MEMBER(uint32, expected_length)
- IPC_STRUCT_MEMBER(uint32, last_modified)
+ IPC_STRUCT_MEMBER(uint32_t, expected_length)
+ IPC_STRUCT_MEMBER(uint32_t, last_modified)
IPC_STRUCT_MEMBER(bool, request_is_seekable)
IPC_STRUCT_END()
@@ -280,9 +282,9 @@ IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginEnabledRendering)
// IOSurface allocated by this plugin must be implicitly released by
// the receipt of this message.
IPC_MESSAGE_ROUTED3(PluginHostMsg_AcceleratedPluginAllocatedIOSurface,
- int32 /* width */,
- int32 /* height */,
- uint32 /* surface_id */)
+ int32_t /* width */,
+ int32_t /* height */,
+ uint32_t /* surface_id */)
// Notifies the renderer process that the plugin produced a new frame
// of content into its IOSurface, and therefore that the compositor
« no previous file with comments | « content/child/permissions/permission_dispatcher.cc ('k') | content/child/power_monitor_broadcast_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698