Chromium Code Reviews| 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 #ifndef REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 5 #ifndef REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 6 #define REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 6 #define REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "remoting/base/auto_thread_task_runner.h" | 11 #include "remoting/base/auto_thread_task_runner.h" |
| 12 #include "remoting/host/it2me/it2me_host.h" | 12 #include "remoting/host/it2me/it2me_host.h" |
| 13 #include "remoting/host/native_messaging/native_messaging_channel.h" | 13 #include "remoting/host/native_messaging/native_messaging_channel.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class DictionaryValue; | 16 class DictionaryValue; |
| 17 } // namespace base | 17 } // namespace base |
| 18 | 18 |
| 19 namespace remoting { | 19 namespace remoting { |
| 20 | 20 |
| 21 // Implementation of the native messaging host process. | 21 // Implementation of the native messaging host process. |
| 22 class It2MeNativeMessagingHost : public It2MeHost::Observer { | 22 class It2MeNativeMessagingHost : public It2MeHost::Observer { |
| 23 public: | 23 public: |
| 24 typedef NativeMessagingChannel::SendMessageCallback SendMessageCallback; | 24 typedef NativeMessagingChannel::SendMessageCallback SendMessageCallback; |
|
nadav
2014/02/06 08:23:49
Why do you need this typedef as part of the class'
weitao
2014/02/19 00:40:03
No, removed.
On 2014/02/06 08:23:49, nadav wrote:
| |
| 25 | 25 |
| 26 It2MeNativeMessagingHost( | 26 It2MeNativeMessagingHost( |
| 27 scoped_refptr<AutoThreadTaskRunner> task_runner, | 27 scoped_refptr<AutoThreadTaskRunner> task_runner, |
| 28 scoped_ptr<NativeMessagingChannel> channel, | 28 scoped_ptr<NativeMessagingChannel> channel, |
|
nadav
2014/02/06 08:23:49
scoped_ptr is sorta deprecated with the advent of
weitao
2014/02/19 00:40:03
Many of the C++11 features (unique_ptr and shared_
Sergey Ulanov
2014/02/19 01:52:52
We don't use C++11 in chromium yet because not all
| |
| 29 scoped_ptr<It2MeHostFactory> factory); | 29 scoped_ptr<It2MeHostFactory> factory); |
| 30 virtual ~It2MeNativeMessagingHost(); | 30 virtual ~It2MeNativeMessagingHost(); |
| 31 | 31 |
| 32 void Start(const base::Closure& quit_closure); | 32 void Start(const base::Closure& quit_closure); |
| 33 | 33 |
| 34 // It2MeHost::Observer implementation | 34 // It2MeHost::Observer implementation |
| 35 virtual void OnClientAuthenticated(const std::string& client_username) | 35 virtual void OnClientAuthenticated(const std::string& client_username) |
| 36 OVERRIDE; | 36 OVERRIDE; |
| 37 virtual void OnStoreAccessCode(const std::string& access_code, | 37 virtual void OnStoreAccessCode(const std::string& access_code, |
| 38 base::TimeDelta access_code_lifetime) OVERRIDE; | 38 base::TimeDelta access_code_lifetime) OVERRIDE; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 | 77 |
| 78 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; | 78 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; |
| 79 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; | 79 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; |
| 80 | 80 |
| 81 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); | 81 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace remoting | 84 } // namespace remoting |
| 85 | 85 |
| 86 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 86 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 87 | |
| OLD | NEW |