Index: remoting/host/remoting_me2me_host.cc |
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc |
index d1deab98c77bcacbba6154ad171184db9198aaa3..da4787f524aac87309450d5fcebb41a69eb0c5f7 100644 |
--- a/remoting/host/remoting_me2me_host.cc |
+++ b/remoting/host/remoting_me2me_host.cc |
@@ -28,6 +28,7 @@ |
#include "ipc/ipc_channel.h" |
#include "ipc/ipc_channel_proxy.h" |
#include "ipc/ipc_listener.h" |
+#include "media/base/media.h" |
#include "net/base/network_change_notifier.h" |
#include "net/socket/ssl_server_socket.h" |
#include "net/url_request/url_fetcher.h" |
@@ -1045,6 +1046,9 @@ int HostProcessMain() { |
// single-threaded. |
net::EnableSSLServerSockets(); |
+ // Ensures runtime specific CPU features are initialized. |
+ media::InitializeCPUSpecificMediaFeatures(); |
Wez
2013/05/30 17:17:29
This looks reasonable given the bug description, b
alexeypa (please no reviews)
2013/05/30 17:35:01
I just mirrored the corresponding change in remoti
|
+ |
// Create the main message loop and start helper threads. |
base::MessageLoop message_loop(base::MessageLoop::TYPE_UI); |
scoped_ptr<ChromotingHostContext> context = |