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

Unified Diff: content/child/npapi/plugin_host.cc

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/npapi/plugin_host.h ('k') | content/child/npapi/plugin_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_host.cc
diff --git a/content/child/npapi/plugin_host.cc b/content/child/npapi/plugin_host.cc
index 7f03896c7e93b3d0369d1dc2a60de33a5356b6c2..47467ae6bc0d4056caaccff14965f43ce5b37c15 100644
--- a/content/child/npapi/plugin_host.cc
+++ b/content/child/npapi/plugin_host.cc
@@ -4,6 +4,9 @@
#include "content/child/npapi/plugin_host.h"
+#include <stddef.h>
+#include <string.h>
+
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/lazy_instance.h"
@@ -199,7 +202,7 @@ void PluginHost::PatchNPNetscapeFuncs(NPNetscapeFuncs* overrides) {
}
bool PluginHost::SetPostData(const char* buf,
- uint32 length,
+ uint32_t length,
std::vector<std::string>* names,
std::vector<std::string>* values,
std::vector<char>* body) {
« no previous file with comments | « content/child/npapi/plugin_host.h ('k') | content/child/npapi/plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698