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

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 123304)
+++ chrome/renderer/chrome_render_process_observer.cc (working copy)
@@ -222,6 +222,9 @@
// 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.
Sergey Ulanov 2012/02/24 20:26:43 nit: add an empty line above this comment.
Ronghua Wu (Left Chromium) 2012/02/24 22:18:51 Done.
+ // TODO(ronghuawu): Remove this once we can get rid of the WSACreateEvent.
Sergey Ulanov 2012/02/24 20:26:43 May be better to explain that this is due to Socke
Ronghua Wu (Left Chromium) 2012/02/24 22:18:51 Done.
+ 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