Index: content/browser/plugin_loader_posix_unittest.cc |
diff --git a/content/browser/plugin_loader_posix_unittest.cc b/content/browser/plugin_loader_posix_unittest.cc |
index 9b7e29b82484dcf9d6fe5174dd4e65df275e74c1..ec1fa0b51f7d707221b88a414e2253ee1bf5e256 100644 |
--- a/content/browser/plugin_loader_posix_unittest.cc |
+++ b/content/browser/plugin_loader_posix_unittest.cc |
@@ -4,6 +4,9 @@ |
#include "content/browser/plugin_loader_posix.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include "base/at_exit.h" |
#include "base/bind.h" |
#include "base/files/file_path.h" |
@@ -54,11 +57,11 @@ class MockPluginLoaderPosix : public PluginLoaderPosix { |
return false; |
} |
- void TestOnPluginLoaded(uint32 index, const WebPluginInfo& plugin) { |
+ void TestOnPluginLoaded(uint32_t index, const WebPluginInfo& plugin) { |
OnPluginLoaded(index, plugin); |
} |
- void TestOnPluginLoadFailed(uint32 index, const base::FilePath& path) { |
+ void TestOnPluginLoadFailed(uint32_t index, const base::FilePath& path) { |
OnPluginLoadFailed(index, path); |
} |