| Index: base/native_library_mac.mm
|
| diff --git a/base/native_library_mac.mm b/base/native_library_mac.mm
|
| index 6544fcaed99eaf644bd36da96bdd864e8bd39327..275570749c382bf697063954904a14898707fa23 100644
|
| --- a/base/native_library_mac.mm
|
| +++ b/base/native_library_mac.mm
|
| @@ -43,7 +43,8 @@ static NativeLibraryObjCStatus GetObjCStatusForImage(
|
|
|
| // static
|
| NativeLibrary LoadNativeLibrary(const base::FilePath& library_path,
|
| - std::string* error) {
|
| + std::string* /* error_message */,
|
| + uint32* /* error_code */) {
|
| // dlopen() etc. open the file off disk.
|
| if (library_path.Extension() == "dylib" || !DirectoryExists(library_path)) {
|
| void* dylib = dlopen(library_path.value().c_str(), RTLD_LAZY);
|
|
|