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

Unified Diff: content/shell/tools/plugin/PluginObject.cpp

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/shell/renderer/shell_render_view_observer.h ('k') | content/shell/tools/plugin/PluginTest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/tools/plugin/PluginObject.cpp
diff --git a/content/shell/tools/plugin/PluginObject.cpp b/content/shell/tools/plugin/PluginObject.cpp
index a3c723fd85f6e5753a041bc924e25c13fff932ba..21548900f9e54ff642e0998b1ce2eeb2d8a53684 100644
--- a/content/shell/tools/plugin/PluginObject.cpp
+++ b/content/shell/tools/plugin/PluginObject.cpp
@@ -31,14 +31,17 @@
#include "PluginObject.h"
-#include "PluginTest.h"
-#include "content/shell/tools/plugin/test_object.h"
-#include "base/strings/string_util.h"
#include <assert.h>
+#include <stddef.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include "PluginTest.h"
+#include "base/strings/string_util.h"
+#include "content/shell/tools/plugin/test_object.h"
+
// Helper function which takes in the plugin window object for logging to the
// console object.
static void pluginLogWithWindowObject(NPObject* windowObject,
« no previous file with comments | « content/shell/renderer/shell_render_view_observer.h ('k') | content/shell/tools/plugin/PluginTest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698