summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
Diffstat (limited to 'remoting')
-rw-r--r--remoting/base/run_all_unittests.cc4
-rw-r--r--remoting/host/it2me/it2me_native_messaging_host.cc4
-rw-r--r--remoting/host/remoting_me2me_host.cc4
3 files changed, 6 insertions, 6 deletions
diff --git a/remoting/base/run_all_unittests.cc b/remoting/base/run_all_unittests.cc
index 5f52f7e..a9c5b64 100644
--- a/remoting/base/run_all_unittests.cc
+++ b/remoting/base/run_all_unittests.cc
@@ -14,8 +14,8 @@ int main(int argc, char** argv) {
// single-threaded.
net::EnableSSLServerSockets();
- // Ensures runtime specific CPU features are initialized.
- media::InitializeCPUSpecificMediaFeatures();
+ // Ensures that media library and specific CPU features are initialized.
+ media::InitializeMediaLibrary();
return base::LaunchUnitTests(
argc, argv, base::Bind(&base::TestSuite::Run,
diff --git a/remoting/host/it2me/it2me_native_messaging_host.cc b/remoting/host/it2me/it2me_native_messaging_host.cc
index 415681c..4c2cb3b 100644
--- a/remoting/host/it2me/it2me_native_messaging_host.cc
+++ b/remoting/host/it2me/it2me_native_messaging_host.cc
@@ -50,8 +50,8 @@ It2MeNativeMessagingHost::It2MeNativeMessagingHost(
weak_factory_(this) {
weak_ptr_ = weak_factory_.GetWeakPtr();
- // Ensures runtime specific CPU features are initialized.
- media::InitializeCPUSpecificMediaFeatures();
+ // Ensures that media library and specific CPU features are initialized.
+ media::InitializeMediaLibrary();
const ServiceUrls* service_urls = ServiceUrls::GetInstance();
const bool xmpp_server_valid =
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
index 3b52799..11858f7 100644
--- a/remoting/host/remoting_me2me_host.cc
+++ b/remoting/host/remoting_me2me_host.cc
@@ -1558,8 +1558,8 @@ int HostProcessMain() {
// single-threaded.
net::EnableSSLServerSockets();
- // Ensures runtime specific CPU features are initialized.
- media::InitializeCPUSpecificMediaFeatures();
+ // Ensures that media library and specific CPU features are initialized.
+ media::InitializeMediaLibrary();
// Create the main message loop and start helper threads.
base::MessageLoopForUI message_loop;