Updating XTBs based on .GRDs from branch master
[chromium-blink-merge.git] / remoting / protocol / fake_session.h
blob649f00d56af4a9725843a38060f993f0b246406b
1 // Copyright (c) 2012 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.
5 #ifndef REMOTING_PROTOCOL_FAKE_SESSION_H_
6 #define REMOTING_PROTOCOL_FAKE_SESSION_H_
8 #include <map>
9 #include <string>
10 #include <vector>
12 #include "base/memory/scoped_ptr.h"
13 #include "remoting/protocol/fake_stream_socket.h"
14 #include "remoting/protocol/session.h"
16 namespace remoting {
17 namespace protocol {
19 extern const char kTestJid[];
21 // FakeSession is a dummy protocol::Session that uses FakeStreamSocket for all
22 // channels.
23 class FakeSession : public Session {
24 public:
25 FakeSession();
26 ~FakeSession() override;
28 EventHandler* event_handler() { return event_handler_; }
30 void set_error(ErrorCode error) { error_ = error; }
32 bool is_closed() const { return closed_; }
34 FakeStreamChannelFactory& fake_channel_factory() { return channel_factory_; }
36 // Session interface.
37 void SetEventHandler(EventHandler* event_handler) override;
38 ErrorCode error() override;
39 const std::string& jid() override;
40 const SessionConfig& config() override;
41 StreamChannelFactory* GetTransportChannelFactory() override;
42 StreamChannelFactory* GetMultiplexedChannelFactory() override;
43 void Close() override;
45 public:
46 EventHandler* event_handler_;
47 scoped_ptr<SessionConfig> config_;
49 FakeStreamChannelFactory channel_factory_;
51 std::string jid_;
53 ErrorCode error_;
54 bool closed_;
56 DISALLOW_COPY_AND_ASSIGN(FakeSession);
59 } // namespace protocol
60 } // namespace remoting
62 #endif // REMOTING_PROTOCOL_FAKE_SESSION_H_