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

Unified Diff: content/ppapi_plugin/ppapi_thread.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: content/ppapi_plugin/ppapi_thread.cc
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
index cab4d937c5779d1979f8e0cc8013a96f199d7653..1aaf0fa01cdb52c8c43e64e0c7d8d9d93f5fadcd 100644
--- a/content/ppapi_plugin/ppapi_thread.cc
+++ b/content/ppapi_plugin/ppapi_thread.cc
@@ -70,7 +70,7 @@ std::set<PP_Instance>* PpapiThread::GetGloballySeenInstanceIDSet() {
}
void PpapiThread::OnMsgLoadPlugin(const FilePath& path) {
- base::ScopedNativeLibrary library(base::LoadNativeLibrary(path));
+ base::ScopedNativeLibrary library(base::LoadNativeLibrary(path, NULL));
if (!library.is_valid())
return;

Powered by Google App Engine
This is Rietveld 408576698