| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 4e1411dd138d3f28dba2ca88e309edc18057a482..9599d85cc1f80a46902dc46a05792988c3e4b82a 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -47,6 +47,7 @@
|
| #include "crypto/nss_util.h"
|
| #include "media/audio/audio_manager.h"
|
| #include "media/base/media.h"
|
| +#include "media/midi/midi_manager.h"
|
| #include "net/base/network_change_notifier.h"
|
| #include "net/socket/client_socket_factory.h"
|
| #include "net/ssl/ssl_config_service.h"
|
| @@ -400,7 +401,10 @@ void BrowserMainLoop::MainMessageLoopStart() {
|
| TRACE_EVENT0("startup", "BrowserMainLoop::Subsystem:AudioMan")
|
| audio_manager_.reset(media::AudioManager::Create());
|
| }
|
| -
|
| + {
|
| + TRACE_EVENT0("startup", "BrowserMainLoop::Subsystem:MIDIManager")
|
| + midi_manager_.reset(media::MIDIManager::Create());
|
| + }
|
|
|
| #if !defined(OS_IOS)
|
| {
|
|
|