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

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

Issue 9243017: Log client jid for rejected clients. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 8 years, 11 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/host_status_observer.h ('k') | remoting/host/it2me_host_user_interface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_ 5 #ifndef REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_
6 #define REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_ 6 #define REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 26 matching lines...) Expand all
37 public: 37 public:
38 It2MeHostUserInterface(ChromotingHost* host, ChromotingHostContext* context); 38 It2MeHostUserInterface(ChromotingHost* host, ChromotingHostContext* context);
39 virtual ~It2MeHostUserInterface(); 39 virtual ~It2MeHostUserInterface();
40 40
41 void Init(); 41 void Init();
42 42
43 // HostStatusObserver implementation. These methods will be called from the 43 // HostStatusObserver implementation. These methods will be called from the
44 // network thread. 44 // network thread.
45 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE; 45 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
46 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE; 46 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
47 virtual void OnAccessDenied() OVERRIDE; 47 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
48 virtual void OnShutdown() OVERRIDE; 48 virtual void OnShutdown() OVERRIDE;
49 49
50 // Shuts down the object and all its resources synchronously. Must 50 // Shuts down the object and all its resources synchronously. Must
51 // be called on the UI thread. 51 // be called on the UI thread.
52 void Shutdown(); 52 void Shutdown();
53 53
54 private: 54 private:
55 class TimerTask; 55 class TimerTask;
56 56
57 // Allow ChromotingHostTest::SetUp() to call InitFrom(). 57 // Allow ChromotingHostTest::SetUp() to call InitFrom().
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 // The JID of the currently-authenticated user (or an empty string if no user 112 // The JID of the currently-authenticated user (or an empty string if no user
113 // is connected). 113 // is connected).
114 std::string authenticated_jid_; 114 std::string authenticated_jid_;
115 115
116 DISALLOW_COPY_AND_ASSIGN(It2MeHostUserInterface); 116 DISALLOW_COPY_AND_ASSIGN(It2MeHostUserInterface);
117 }; 117 };
118 118
119 } // namespace remoting 119 } // namespace remoting
120 120
121 #endif // REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_ 121 #endif // REMOTING_HOST_IT2ME_HOST_USER_INTERFACE_H_
OLDNEW
« no previous file with comments | « remoting/host/host_status_observer.h ('k') | remoting/host/it2me_host_user_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698