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

Side by Side Diff: remoting/host/it2me/it2me_native_messaging_host.cc

Issue 558403002: Remote Assistance on Chrome OS Part II - Native Messaging renaming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include cleanups Created 6 years, 3 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
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698