// Copyright 2016 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_BASE_SESSION_OPTIONS_H_ #define REMOTING_BASE_SESSION_OPTIONS_H_ #include <optional> #include <string> #include "base/containers/flat_map.h" namespace remoting { // Session based host options sending from client. This class parses and stores // session configuration from client side to control the behavior of other host // components. class SessionOptions final { … }; } // namespace remoting #endif // REMOTING_BASE_SESSION_OPTIONS_H_