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

Unified Diff: chrome/renderer/chrome_render_process_observer.cc

Issue 9463023: The ws2_32.dll is needed by JingleThreadWrapper for WebRTC and Chromoting. (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_render_process_observer.cc
===================================================================
--- chrome/renderer/chrome_render_process_observer.cc (revision 123123)
+++ chrome/renderer/chrome_render_process_observer.cc (working copy)
@@ -222,6 +222,12 @@
// Only load this library when the feature is enabled.
std::string error;
base::LoadNativeLibrary(FilePath(L"crypt32.dll"), &error);
+ // ws2_32.dll is used by JingleThreadWrapper for WebRTC and Chromoting.
+
+ // TODO(ronghuawu): Remove this once we can get rid of the dependency to
+ // SocketServer (which uses WSACreateEvent) from JingleThreadWrapper.
+ // http://crbug.com/115702
+ base::LoadNativeLibrary(FilePath(L"ws2_32.dll"), &error);
#endif
// Note that under Linux, the media library will normally already have
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698