summaryrefslogtreecommitdiffstats
path: root/remoting/host/fake_host_extension.h
blob: e61828c9a889fe6146b697ac5bab931a4c3a323f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_FAKE_HOST_EXTENSION_H_
#define REMOTING_HOST_FAKE_HOST_EXTENSION_H_

#include <string>

#include "remoting/host/host_extension.h"

namespace remoting {

class ClientSessionControl;
class HostExtensionSession;

namespace protocol {
class ClientStub;
}

// |HostExtension| implementation that can report a specified capability, and
// reports messages matching a specified type as having been handled.
class FakeExtension : public HostExtension {
 public:
  FakeExtension(const std::string& message_type,
                const std::string& capability);
  virtual ~FakeExtension();

  // HostExtension interface.
  virtual std::string capability() const OVERRIDE;
  virtual scoped_ptr<HostExtensionSession> CreateExtensionSession(
      ClientSessionControl* client_session_control,
      protocol::ClientStub* client_stub) OVERRIDE;

  // Controls for testing.
  void set_steal_video_capturer(bool steal_video_capturer);

  // Accessors for testing.
  bool has_handled_message();
  bool has_wrapped_video_encoder();
  bool has_wrapped_video_capturer();
  bool was_instantiated() { return was_instantiated_; }

 private:
  class Session;
  friend class Session;

  std::string message_type_;
  std::string capability_;

  bool steal_video_capturer_;

  bool has_handled_message_;
  bool has_wrapped_video_encoder_;
  bool has_wrapped_video_capturer_;
  bool was_instantiated_;

  DISALLOW_COPY_AND_ASSIGN(FakeExtension);
};

} // namespace remoting

#endif  // REMOTING_HOST_FAKE_HOST_EXTENSION_H_