Index: webkit/default_plugin/plugin_database_handler.cc |
=================================================================== |
--- webkit/default_plugin/plugin_database_handler.cc (revision 48060) |
+++ webkit/default_plugin/plugin_database_handler.cc (working copy) |
@@ -144,13 +144,13 @@ |
} |
} |
- unsigned long bytes_written = 0; |
+ DWORD bytes_written = 0; |
if (0 == lstrcmpiA(stream->url, plugin_finder_url_.c_str())) { |
DCHECK(plugin_downloads_file_ != INVALID_HANDLE_VALUE); |
WriteFile(plugin_downloads_file_, buffer, buffer_length, &bytes_written, |
NULL); |
- DCHECK(buffer_length == bytes_written); |
+ DCHECK_EQ(buffer_length, static_cast<int32>(bytes_written)); |
} |
return bytes_written; |
} |