| Index: remoting/host/host_session_options.h
|
| diff --git a/remoting/host/host_session_options.h b/remoting/host/host_session_options.h
|
| index e302b4b4554ee82d09643441541b34989c08c8f5..158a4005f16e3ba9c40c9868098d963f1c3bdde4 100644
|
| --- a/remoting/host/host_session_options.h
|
| +++ b/remoting/host/host_session_options.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef REMOTING_PROTOCOL_HOST_SESSION_OPTIONS_H_
|
| -#define REMOTING_PROTOCOL_HOST_SESSION_OPTIONS_H_
|
| +#ifndef REMOTING_HOST_HOST_SESSION_OPTIONS_H_
|
| +#define REMOTING_HOST_HOST_SESSION_OPTIONS_H_
|
|
|
| #include <map>
|
| #include <string>
|
| @@ -12,7 +12,6 @@
|
| #include "base/optional.h"
|
|
|
| namespace remoting {
|
| -namespace protocol {
|
|
|
| // Session based host options sending from client. This class parses and stores
|
| // session configuration from client side to control the behavior of other host
|
| @@ -22,6 +21,8 @@ class HostSessionOptions final {
|
| HostSessionOptions();
|
| ~HostSessionOptions();
|
|
|
| + HostSessionOptions(const std::string& parameter);
|
| +
|
| // Appends one key-value pair into current instance.
|
| void Append(const std::string& key, const std::string& value);
|
|
|
| @@ -46,7 +47,6 @@ class HostSessionOptions final {
|
| DISALLOW_COPY_AND_ASSIGN(HostSessionOptions);
|
| };
|
|
|
| -} // namespace protocol
|
| } // namespace remoting
|
|
|
| -#endif // REMOTING_PROTOCOL_HOST_SESSION_OPTIONS_H_
|
| +#endif // REMOTING_HOST_HOST_SESSION_OPTIONS_H_
|
|
|