Introduced IDR_SIGNIN_INTERNALS_INDEX_* strings to grit_whitelist.txt
[chromium-blink-merge.git] / remoting / host / host_status_monitor_fake.h
blobf989ce39f8694fcf06f3abdd5e1049bedf7b607b
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.
5 #ifndef REMOTING_HOST_HOST_STATUS_MONITOR_FAKE_H_
6 #define REMOTING_HOST_HOST_STATUS_MONITOR_FAKE_H_
8 #include "base/memory/weak_ptr.h"
9 #include "remoting/host/host_status_monitor.h"
11 namespace remoting {
13 // An implementation of HostStatusMonitor that does nothing.
14 class HostStatusMonitorFake
15 : public base::SupportsWeakPtr<HostStatusMonitorFake>,
16 public HostStatusMonitor {
17 public:
18 virtual ~HostStatusMonitorFake() {}
20 // HostStatusMonitor interface.
21 virtual void AddStatusObserver(HostStatusObserver* observer) OVERRIDE {}
22 virtual void RemoveStatusObserver(HostStatusObserver* observer) OVERRIDE {}
25 } // namespace remoting
27 #endif // REMOTING_HOST_HOST_STATUS_MONITOR_FAKE_H_