blob: 1362776d3e35ec84b2e7df80b56e328eb5060859 [file] [log] [blame]
Joe Downing505ae0d02018-10-17 17:47:301// Copyright 2018 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "remoting/host/action_executor.h"
6
7namespace remoting {
8
9// static
10std::unique_ptr<ActionExecutor> ActionExecutor::Create() {
11 return nullptr;
12}
13
14ActionExecutor::ActionExecutor() = default;
15
16ActionExecutor::~ActionExecutor() = default;
17
18} // namespace remoting