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

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

Issue 6911024: Add HostObserverInterface and decouple HeartbeatSender and ChromotingHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 7 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
« no previous file with comments | « remoting/host/heartbeat_sender_unittest.cc ('k') | remoting/host/simple_host_process.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_HOST_STATUS_OBSERVER_H_
6 #define REMOTING_HOST_STATUS_OBSERVER_H_
7
8 #include "base/memory/ref_counted.h"
9
10 namespace remoting {
11
12 class SignalStrategy;
13
14 class HostStatusObserver
15 : public base::RefCountedThreadSafe<HostStatusObserver> {
16 public:
17 HostStatusObserver() { }
18
19 // Called on the network thread when status of the XMPP changes.
20 virtual void OnSignallingConnected(SignalStrategy* signal_strategy,
21 const std::string& full_jid) = 0;
22 virtual void OnSignallingDisconnected() = 0;
23
24 // Called on the main thread when the host shuts down.
25 virtual void OnShutdown() = 0;
26
27 protected:
28 friend class base::RefCountedThreadSafe<HostStatusObserver>;
29 virtual ~HostStatusObserver() { }
30 };
31
32 } // namespace remoting
33
34 #endif // REMOTING_HOST_STATUS_OBSERVER_H_
OLDNEW
« no previous file with comments | « remoting/host/heartbeat_sender_unittest.cc ('k') | remoting/host/simple_host_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698