blob: 8541d629dc98a1fe8c11faf986a6f24818ea60ad (
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
|
// Copyright (c) 2010 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_MOCK_OBJECTS_H_
#define REMOTING_HOST_MOCK_OBJECTS_H_
#include "remoting/host/capturer.h"
#include "remoting/host/event_executor.h"
#include "remoting/proto/internal.pb.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace remoting {
class MockCapturer : public Capturer {
public:
MockCapturer() {}
MOCK_METHOD0(ScreenConfigurationChanged, void());
MOCK_METHOD1(InvalidateRects, void(const InvalidRects& inval_rects));
MOCK_METHOD0(InvalidateFullScreen, void());
MOCK_METHOD0(CalculateInvalidRects, void());
MOCK_METHOD1(CaptureInvalidRects, void(CaptureCompletedCallback* callback));
MOCK_METHOD2(CaptureRects, void(const InvalidRects& rects,
CaptureCompletedCallback* callback));
MOCK_CONST_METHOD0(width, int());
MOCK_CONST_METHOD0(height, int());
private:
DISALLOW_COPY_AND_ASSIGN(MockCapturer);
};
class MockEventExecutor : public EventExecutor {
public:
MockEventExecutor(Capturer* capturer) : EventExecutor(capturer) {}
MOCK_METHOD1(HandleInputEvent, void(ChromotingClientMessage* messages));
private:
DISALLOW_COPY_AND_ASSIGN(MockEventExecutor);
};
} // namespace remoting
#endif // REMOTING_HOST_MOCK_OBJECTS_H_
|