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

Unified Diff: content/shell/tools/plugin/main.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/tools/plugin/Tests/SlowNPPNew.cpp ('k') | content/test/accessibility_browser_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/tools/plugin/main.cpp
diff --git a/content/shell/tools/plugin/main.cpp b/content/shell/tools/plugin/main.cpp
index fb682b3adfeeae88c6fcb939372af6d0d5469102..a36ff353dea31c4831f201c8f920b640a5b1fe60 100644
--- a/content/shell/tools/plugin/main.cpp
+++ b/content/shell/tools/plugin/main.cpp
@@ -27,14 +27,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "PluginObject.h"
+#include <string.h>
+#include <stdint.h>
-#include "PluginTest.h"
-#include "base/strings/string_util.h"
#include <cstdlib>
#include <cstring>
#include <string>
+#include "PluginObject.h"
+#include "PluginTest.h"
+#include "base/strings/string_util.h"
+
#ifdef XP_UNIX
#include <X11/Xlib.h>
#include <X11/Xutil.h>
« no previous file with comments | « content/shell/tools/plugin/Tests/SlowNPPNew.cpp ('k') | content/test/accessibility_browser_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698