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

Unified Diff: content/browser/plugin_loader_posix.cc

Issue 8511034: uint32_t -> uint32 in content/browser/plugin_loader_posix.* and include basictypes.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/browser/plugin_loader_posix.h ('k') | content/browser/plugin_loader_posix_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_loader_posix.cc
diff --git a/content/browser/plugin_loader_posix.cc b/content/browser/plugin_loader_posix.cc
index 15ab75c4c22882d47b9dfc1ee8555e5023a6abd8..f077b87a2ab0f0f39515f4d4bf8fbff9bfd639ec 100644
--- a/content/browser/plugin_loader_posix.cc
+++ b/content/browser/plugin_loader_posix.cc
@@ -101,7 +101,7 @@ void PluginLoaderPosix::LoadPluginsInternal() {
process_host_->Send(new UtilityMsg_LoadPlugins(canonical_list_));
}
-void PluginLoaderPosix::OnPluginLoaded(uint32_t index,
+void PluginLoaderPosix::OnPluginLoaded(uint32 index,
const webkit::WebPluginInfo& plugin) {
if (index != next_load_index_) {
LOG(ERROR) << "Received unexpected plugin load message for "
@@ -117,7 +117,7 @@ void PluginLoaderPosix::OnPluginLoaded(uint32_t index,
MaybeRunPendingCallbacks();
}
-void PluginLoaderPosix::OnPluginLoadFailed(uint32_t index,
+void PluginLoaderPosix::OnPluginLoadFailed(uint32 index,
const FilePath& plugin_path) {
if (index != next_load_index_) {
LOG(ERROR) << "Received unexpected plugin load failure message for "
« no previous file with comments | « content/browser/plugin_loader_posix.h ('k') | content/browser/plugin_loader_posix_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698