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

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

Issue 393703002: Rename *Fake to Fake* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 6 years, 5 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) 2013 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_HOST_HOST_STATUS_MONITOR_FAKE_H_
6 #define REMOTING_HOST_HOST_STATUS_MONITOR_FAKE_H_
7
8 #include "base/memory/weak_ptr.h"
9 #include "remoting/host/host_status_monitor.h"
10
11 namespace remoting {
12
13 // An implementation of HostStatusMonitor that does nothing.
14 class HostStatusMonitorFake
15 : public base::SupportsWeakPtr<HostStatusMonitorFake>,
16 public HostStatusMonitor {
17 public:
18 virtual ~HostStatusMonitorFake() {}
19
20 // HostStatusMonitor interface.
21 virtual void AddStatusObserver(HostStatusObserver* observer) OVERRIDE {}
22 virtual void RemoveStatusObserver(HostStatusObserver* observer) OVERRIDE {}
23 };
24
25 } // namespace remoting
26
27 #endif // REMOTING_HOST_HOST_STATUS_MONITOR_FAKE_H_
OLDNEW
« no previous file with comments | « remoting/host/host_status_logger_unittest.cc ('k') | remoting/host/ipc_desktop_environment_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698