Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3161)

Unified Diff: base/native_library_win.cc

Issue 6864020: linux: don't always print dlopen errors from LoadNativeLibrary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
}

Powered by Google App Engine
This is Rietveld 408576698