// 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. #ifndef REMOTING_HOST_HOST_EXTENSION_H_ #define REMOTING_HOST_HOST_EXTENSION_H_ #include <memory> #include <string> namespace remoting { class ClientSessionDetails; class HostExtensionSession; namespace protocol { class ClientStub; } // Extends |ChromotingHost| with new functionality, and can use extension // messages to communicate with the client. class HostExtension { … }; } // namespace remoting #endif // REMOTING_HOST_HOST_EXTENSION_H_