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

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

Issue 6413036: Another big out-of-lining of test code. Hits a lot of gmock objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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
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_CLIENT_MOCK_OBJECTS_H_
6 #define REMOTING_CLIENT_MOCK_OBJECTS_H_
Elliot Glaysher 2011/02/08 02:25:42 This file isn't included anywhere in the project.
7
8 #include "base/ref_counted.h"
9 #include "testing/gmock/include/gmock/gmock.h"
10
11 namespace remoting {
12
13 class MockDecodeDoneHandler :
14 public base::RefCountedThreadSafe<MockDecodeDoneHandler> {
15 public:
16 MockDecodeDoneHandler() {}
17
18 MOCK_METHOD0(PartialDecodeDone, void());
19 MOCK_METHOD0(DecodeDone, void());
20
21 private:
22 DISALLOW_COPY_AND_ASSIGN(MockDecodeDoneHandler);
23 };
24
25 } // namespace remoting
26
27 #endif // REMOTING_CLIENT_MOCK_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698