Joe Downing | 505ae0d0 | 2018-10-17 17:47:30 | [diff] [blame] | 1 | // 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 | |||||
7 | namespace remoting { | ||||
8 | |||||
9 | // static | ||||
10 | std::unique_ptr<ActionExecutor> ActionExecutor::Create() { | ||||
11 | return nullptr; | ||||
12 | } | ||||
13 | |||||
14 | ActionExecutor::ActionExecutor() = default; | ||||
15 | |||||
16 | ActionExecutor::~ActionExecutor() = default; | ||||
17 | |||||
18 | } // namespace remoting |