blob: ab473ee2b8a82be46d79e0c18a31ec900a12f9ee [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/media/router/providers/cast/chrome_cast_message_handler.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_content_browser_client.h"
#include "chrome/browser/media/router/data_decoder_util.h"
#include "components/cast_channel/cast_message_handler.h"
#include "components/cast_channel/cast_socket_service.h"
#include "components/version_info/version_info.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/service_manager_connection.h"
#include "services/service_manager/public/cpp/connector.h"
namespace media_router {
cast_channel::CastMessageHandler* GetCastMessageHandler() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
static cast_channel::CastMessageHandler* instance =
new cast_channel::CastMessageHandler(
cast_channel::CastSocketService::GetInstance(),
content::ServiceManagerConnection::GetForProcess()
->GetConnector()
->Clone(),
kDataDecoderServiceBatchId, GetUserAgent(),
version_info::GetVersionNumber(),
g_browser_process->GetApplicationLocale());
return instance;
}
} // namespace media_router