OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "remoting/host/it2me/it2me_native_messaging_host.h" | 5 #include "remoting/host/it2me/it2me_native_messaging_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 {kReceivedAccessCode, "RECEIVED_ACCESS_CODE"}, | 35 {kReceivedAccessCode, "RECEIVED_ACCESS_CODE"}, |
36 {kConnected, "CONNECTED"}, | 36 {kConnected, "CONNECTED"}, |
37 {kDisconnecting, "DISCONNECTING"}, | 37 {kDisconnecting, "DISCONNECTING"}, |
38 {kError, "ERROR"}, | 38 {kError, "ERROR"}, |
39 {kInvalidDomainError, "INVALID_DOMAIN_ERROR"}, }; | 39 {kInvalidDomainError, "INVALID_DOMAIN_ERROR"}, }; |
40 | 40 |
41 } // namespace | 41 } // namespace |
42 | 42 |
43 It2MeNativeMessagingHost::It2MeNativeMessagingHost( | 43 It2MeNativeMessagingHost::It2MeNativeMessagingHost( |
44 scoped_refptr<AutoThreadTaskRunner> task_runner, | 44 scoped_refptr<AutoThreadTaskRunner> task_runner, |
45 scoped_ptr<NativeMessagingChannel> channel, | 45 scoped_ptr<extensions::NativeMessagingChannel> channel, |
46 scoped_ptr<It2MeHostFactory> factory) | 46 scoped_ptr<It2MeHostFactory> factory) |
47 : channel_(channel.Pass()), | 47 : channel_(channel.Pass()), |
48 factory_(factory.Pass()), | 48 factory_(factory.Pass()), |
49 weak_factory_(this) { | 49 weak_factory_(this) { |
50 weak_ptr_ = weak_factory_.GetWeakPtr(); | 50 weak_ptr_ = weak_factory_.GetWeakPtr(); |
51 | 51 |
52 // Initialize the host context to manage the threads for the it2me host. | 52 // Initialize the host context to manage the threads for the it2me host. |
53 // The native messaging host, rather than the It2MeHost object, owns and | 53 // The native messaging host, rather than the It2MeHost object, owns and |
54 // maintains the lifetime of the host context. | 54 // maintains the lifetime of the host context. |
55 | 55 |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 } | 296 } |
297 | 297 |
298 /* static */ | 298 /* static */ |
299 std::string It2MeNativeMessagingHost::HostStateToString( | 299 std::string It2MeNativeMessagingHost::HostStateToString( |
300 It2MeHostState host_state) { | 300 It2MeHostState host_state) { |
301 return ValueToName(kIt2MeHostStates, host_state); | 301 return ValueToName(kIt2MeHostStates, host_state); |
302 } | 302 } |
303 | 303 |
304 } // namespace remoting | 304 } // namespace remoting |
305 | 305 |
OLD | NEW |