// 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 "ipc/ipc_channel_factory.h" #include "base/memory/ptr_util.h" #include "base/task/single_thread_task_runner.h" #include "build/build_config.h" #include "ipc/ipc_channel_mojo.h" namespace IPC { namespace { class PlatformChannelFactory : public ChannelFactory { … }; } // namespace // static std::unique_ptr<ChannelFactory> ChannelFactory::Create( const ChannelHandle& handle, Channel::Mode mode, const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner) { … } } // namespace IPC