// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_CAST_MESSAGE_PORT_CAST_CORE_MESSAGE_PORT_CORE_WITH_TASK_RUNNER_H_ #define COMPONENTS_CAST_MESSAGE_PORT_CAST_CORE_MESSAGE_PORT_CORE_WITH_TASK_RUNNER_H_ #include "base/memory/scoped_refptr.h" #include "base/task/sequenced_task_runner.h" #include "components/cast/message_port/cast_core/message_port_core.h" namespace cast_api_bindings { // MessagePortCore serving users of // base::SequencedTaskRunner::CurrentDefaultHandle class MessagePortCoreWithTaskRunner : public MessagePortCore { … }; } // namespace cast_api_bindings #endif // COMPONENTS_CAST_MESSAGE_PORT_CAST_CORE_MESSAGE_PORT_CORE_WITH_TASK_RUNNER_H_