Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: remoting/host/host_mock_objects.h

Issue 8493020: Move code in src/remoting to the new callbacks. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: - Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/host_key_pair.h ('k') | remoting/host/json_host_config.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_HOST_MOCK_OBJECTS_H_ 5 #ifndef REMOTING_HOST_HOST_MOCK_OBJECTS_H_
6 #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_ 6 #define REMOTING_HOST_HOST_MOCK_OBJECTS_H_
7 7
8 #include "remoting/host/access_verifier.h" 8 #include "remoting/host/access_verifier.h"
9 #include "remoting/host/capturer.h" 9 #include "remoting/host/capturer.h"
10 #include "remoting/host/curtain.h" 10 #include "remoting/host/curtain.h"
(...skipping 12 matching lines...) Expand all
23 public: 23 public:
24 MockCapturer(); 24 MockCapturer();
25 virtual ~MockCapturer(); 25 virtual ~MockCapturer();
26 26
27 MOCK_METHOD0(ScreenConfigurationChanged, void()); 27 MOCK_METHOD0(ScreenConfigurationChanged, void());
28 MOCK_CONST_METHOD0(pixel_format, media::VideoFrame::Format()); 28 MOCK_CONST_METHOD0(pixel_format, media::VideoFrame::Format());
29 MOCK_METHOD0(ClearInvalidRegion, void()); 29 MOCK_METHOD0(ClearInvalidRegion, void());
30 MOCK_METHOD1(InvalidateRegion, void(const SkRegion& invalid_region)); 30 MOCK_METHOD1(InvalidateRegion, void(const SkRegion& invalid_region));
31 MOCK_METHOD1(InvalidateScreen, void(const SkISize&)); 31 MOCK_METHOD1(InvalidateScreen, void(const SkISize&));
32 MOCK_METHOD0(InvalidateFullScreen, void()); 32 MOCK_METHOD0(InvalidateFullScreen, void());
33 MOCK_METHOD1(CaptureInvalidRegion, void(CaptureCompletedCallback* callback)); 33 MOCK_METHOD1(CaptureInvalidRegion,
34 void(const CaptureCompletedCallback& callback));
34 MOCK_CONST_METHOD0(size_most_recent, const SkISize&()); 35 MOCK_CONST_METHOD0(size_most_recent, const SkISize&());
35 36
36 private: 37 private:
37 DISALLOW_COPY_AND_ASSIGN(MockCapturer); 38 DISALLOW_COPY_AND_ASSIGN(MockCapturer);
38 }; 39 };
39 40
40 class MockCurtain : public Curtain { 41 class MockCurtain : public Curtain {
41 public: 42 public:
42 MockCurtain(); 43 MockCurtain();
43 virtual ~MockCurtain(); 44 virtual ~MockCurtain();
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 MOCK_METHOD2(VerifyPermissions, bool(const std::string& client_jid, 135 MOCK_METHOD2(VerifyPermissions, bool(const std::string& client_jid,
135 const std::string& token)); 136 const std::string& token));
136 137
137 private: 138 private:
138 DISALLOW_COPY_AND_ASSIGN(MockAccessVerifier); 139 DISALLOW_COPY_AND_ASSIGN(MockAccessVerifier);
139 }; 140 };
140 141
141 } // namespace remoting 142 } // namespace remoting
142 143
143 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_ 144 #endif // REMOTING_HOST_HOST_MOCK_OBJECTS_H_
OLDNEW
« no previous file with comments | « remoting/host/host_key_pair.h ('k') | remoting/host/json_host_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698