summaryrefslogtreecommitdiffstats
path: root/content/browser/plugin_loader_posix.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-09 23:17:28 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-09 23:17:28 +0000
commitd9b73c84e0344ae87a42956ba0ab4b1322a073b7 (patch)
tree3eb2fc7493b3b6b01b46f646092d7d6a4ce9738e /content/browser/plugin_loader_posix.h
parent663ef09409998887174b51b1e9c1c70f9b9eb93c (diff)
downloadchromium_src-d9b73c84e0344ae87a42956ba0ab4b1322a073b7.zip
chromium_src-d9b73c84e0344ae87a42956ba0ab4b1322a073b7.tar.gz
chromium_src-d9b73c84e0344ae87a42956ba0ab4b1322a073b7.tar.bz2
uint32_t -> uint32 in content/browser/plugin_loader_posix.* and include basictypes.h.
The header file currently doesn't compile on Windows (unless a definition for uint32_t is picked up from elsewhere, coincidentally). Review URL: http://codereview.chromium.org/8511034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_loader_posix.h')
-rw-r--r--content/browser/plugin_loader_posix.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/plugin_loader_posix.h b/content/browser/plugin_loader_posix.h
index baa15b0..b99a17a 100644
--- a/content/browser/plugin_loader_posix.h
+++ b/content/browser/plugin_loader_posix.h
@@ -7,6 +7,7 @@
#include <vector>
+#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/time.h"
#include "content/browser/plugin_service.h"
@@ -77,8 +78,8 @@ class CONTENT_EXPORT PluginLoaderPosix : public UtilityProcessHost::Client,
virtual void LoadPluginsInternal();
// Message handlers.
- void OnPluginLoaded(uint32_t index, const webkit::WebPluginInfo& plugin);
- void OnPluginLoadFailed(uint32_t index, const FilePath& plugin_path);
+ void OnPluginLoaded(uint32 index, const webkit::WebPluginInfo& plugin);
+ void OnPluginLoadFailed(uint32 index, const FilePath& plugin_path);
// Checks if the plugin path is an internal plugin, and, if it is, adds it to
// |loaded_plugins_|.