Chromium Code Reviews| Index: base/native_library_win.cc |
| diff --git a/base/native_library_win.cc b/base/native_library_win.cc |
| index b77fbe13cdc61c3c850d4784f94573dcbb4e7347..c68cf7f051bfa1cf1b7bd7554918fb6732844447 100644 |
| --- a/base/native_library_win.cc |
| +++ b/base/native_library_win.cc |
| @@ -39,7 +39,8 @@ NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path, |
| } |
| // static |
| -NativeLibrary LoadNativeLibrary(const FilePath& library_path) { |
| +NativeLibrary LoadNativeLibrary(const FilePath& library_path, |
| + std::string* error) { |
| return LoadNativeLibraryHelper(library_path, LoadLibraryW); |
|
awong
2011/04/15 18:57:01
If the return is NULL, populate with Populate with
Evan Martin
2011/04/15 19:00:04
(Same argument here as for Mac.)
awong
2011/04/15 19:03:56
Oh duh.
|
| } |