| Index: chrome/default_plugin/plugin_database_handler.cc | 
| =================================================================== | 
| --- chrome/default_plugin/plugin_database_handler.cc	(revision 78499) | 
| +++ chrome/default_plugin/plugin_database_handler.cc	(working copy) | 
| @@ -4,6 +4,9 @@ | 
|  | 
| #include "chrome/default_plugin/plugin_database_handler.h" | 
|  | 
| +#include <atlbase.h> | 
| +#include <atlwin.h> | 
| + | 
| #include "libxml/parser.h" | 
| #include "libxml/xpath.h" | 
|  | 
| @@ -118,7 +121,7 @@ | 
| FILE_SHARE_READ, NULL, CREATE_ALWAYS, | 
| FILE_ATTRIBUTE_NORMAL, NULL); | 
| if (plugin_downloads_file_ == INVALID_HANDLE_VALUE) { | 
| -      unsigned long error = ::GetLastError(); | 
| +      DWORD error = ::GetLastError(); | 
| if (error == ERROR_SHARING_VIOLATION) { | 
| // File may have been downloaded by another plugin instance on this | 
| // page. | 
|  |