| Index: base/native_library_mac.mm
|
| diff --git a/base/native_library_mac.mm b/base/native_library_mac.mm
|
| index 742d92a145def47917d5762ad6cd67437c961b53..9f7a9679dcae220a544ae485e0572c5c2c98901c 100644
|
| --- a/base/native_library_mac.mm
|
| +++ b/base/native_library_mac.mm
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -16,7 +16,8 @@
|
| namespace base {
|
|
|
| // static
|
| -NativeLibrary LoadNativeLibrary(const FilePath& library_path) {
|
| +NativeLibrary LoadNativeLibrary(const FilePath& library_path,
|
| + std::string* error) {
|
| // dlopen() etc. open the file off disk.
|
| if (library_path.Extension() == "dylib" ||
|
| !file_util::DirectoryExists(library_path)) {
|
|
|