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

Side by Side Diff: remoting/jingle_glue/mock_objects.h

Issue 2690003: Copy the (early prototype of) remoting in Chrome into the public tree.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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.
4
5 #ifndef REMOTING_JINGLE_GLUE_MOCK_OBJECTS_H_
6 #define REMOTING_JINGLE_GLUE_MOCK_OBJECTS_H_
7
8 #include "remoting/jingle_glue/jingle_channel.h"
9 #include "testing/gmock/include/gmock/gmock.h"
10
11 namespace remoting {
12
13 class MockJingleChannel : public JingleChannel {
14 public:
15 MockJingleChannel() {}
16
17 MOCK_METHOD1(Write, void(scoped_refptr<media::DataBuffer> data));
18 MOCK_METHOD0(Close, void());
19
20 private:
21 DISALLOW_COPY_AND_ASSIGN(MockJingleChannel);
22 };
23
24 } // namespace remoting
25
26 #endif // REMOTING_JINGLE_GLUE_MOCK_OBJECTS_H_
OLDNEW
« no previous file with comments | « remoting/jingle_glue/jingle_thread_unittest.cc ('k') | remoting/jingle_glue/relay_port_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698