 Chromium Code Reviews
 Chromium Code Reviews Issue 591463003:
  Remote Assistance on Chrome OS Part III - NativeMessageHost  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@native_messaging
    
  
    Issue 591463003:
  Remote Assistance on Chrome OS Part III - NativeMessageHost  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@native_messaging| Index: chrome/browser/extensions/api/messaging/native_message_port.h | 
| diff --git a/chrome/browser/extensions/api/messaging/native_message_port.h b/chrome/browser/extensions/api/messaging/native_message_port.h | 
| index f94db96a8ad107afaa09850d9a6ad7da5d960714..d0f291415b519c37af6761611f65c931caa238b1 100644 | 
| --- a/chrome/browser/extensions/api/messaging/native_message_port.h | 
| +++ b/chrome/browser/extensions/api/messaging/native_message_port.h | 
| @@ -13,14 +13,14 @@ class NativeMessageProcessHost; | 
| // A port that manages communication with a native application. | 
| class NativeMessagePort : public MessageService::MessagePort { | 
| public: | 
| - // Takes ownership of |native_process|. | 
| - explicit NativeMessagePort(NativeMessageProcessHost* native_process); | 
| + // Takes ownership of |native_message_host|. | 
| 
Sergey Ulanov
2014/09/22 23:42:59
Please use scoped_ptr<> to pass ownership and remo
 
kelvinp
2014/09/23 20:16:42
Done.
 | 
| + explicit NativeMessagePort(NativeMessageHost* native_message_host); | 
| virtual ~NativeMessagePort(); | 
| virtual void DispatchOnMessage(const Message& message, | 
| int target_port_id) OVERRIDE; | 
| private: | 
| - NativeMessageProcessHost* native_process_; | 
| + NativeMessageHost* native_message_host_; | 
| }; | 
| } // namespace extensions |