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

Unified Diff: app/win/shell.cc

Issue 6864020: linux: don't always print dlopen errors from LoadNativeLibrary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: owners 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
« no previous file with comments | « no previous file | base/memory/scoped_native_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/win/shell.cc
diff --git a/app/win/shell.cc b/app/win/shell.cc
index a951315008c715aa6c2e9bea19503f74a85ec230..cf4738705be8de92263eb712ae366bcbde2a6cab 100644
--- a/app/win/shell.cc
+++ b/app/win/shell.cc
@@ -81,7 +81,7 @@ void SetAppIdForWindow(const string16& app_id, HWND hwnd) {
std::wstring shell32_filename(kShell32);
FilePath shell32_filepath(shell32_filename);
base::NativeLibrary shell32_library = base::LoadNativeLibrary(
- shell32_filepath);
+ shell32_filepath, NULL);
if (!shell32_library)
return;
« no previous file with comments | « no previous file | base/memory/scoped_native_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698