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

Unified Diff: chrome/browser/extensions/api/messaging/native_message_port.h

Issue 591463003: Remote Assistance on Chrome OS Part III - NativeMessageHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@native_messaging
Patch Set: Address Sergey's feedback 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 side-by-side diff with in-line comments
Download patch
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..15979ef9a7ceaf36f101772abb50f92beb6db468 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|.
+ explicit NativeMessagePort(scoped_ptr<NativeMessageHost> native_message_host);
virtual ~NativeMessagePort();
virtual void DispatchOnMessage(const Message& message,
int target_port_id) OVERRIDE;
private:
- NativeMessageProcessHost* native_process_;
+ scoped_ptr<NativeMessageHost> native_message_host_;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698