// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/app/mojo/mojo_init.h" #include <memory> #include "base/command_line.h" #include "base/lazy_instance.h" #include "content/public/common/content_switches.h" #include "ipc/ipc_channel.h" #include "mojo/core/embedder/configuration.h" #include "mojo/core/embedder/embedder.h" namespace content { namespace { class MojoInitializer { … }; base::LazyInstance<MojoInitializer>::Leaky mojo_initializer; } // namespace void InitializeMojo() { … } } // namespace content