| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // A class that receives IPC messages from an NPObjectProxy and calls the real | 5 // A class that receives IPC messages from an NPObjectProxy and calls the real |
| 6 // NPObject. | 6 // NPObject. |
| 7 | 7 |
| 8 #ifndef CONTENT_COMMON_NPOBJECT_STUB_H_ | 8 #ifndef CONTENT_COMMON_NPOBJECT_STUB_H_ |
| 9 #define CONTENT_COMMON_NPOBJECT_STUB_H_ | 9 #define CONTENT_COMMON_NPOBJECT_STUB_H_ |
| 10 #pragma once | 10 #pragma once |
| 11 | 11 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 34 NPObjectStub(NPObject* npobject, | 34 NPObjectStub(NPObject* npobject, |
| 35 NPChannelBase* channel, | 35 NPChannelBase* channel, |
| 36 int route_id, | 36 int route_id, |
| 37 gfx::NativeViewId containing_window, | 37 gfx::NativeViewId containing_window, |
| 38 const GURL& page_url); | 38 const GURL& page_url); |
| 39 virtual ~NPObjectStub(); | 39 virtual ~NPObjectStub(); |
| 40 | 40 |
| 41 // Schedules tear-down of this stub. The underlying NPObject reference is | 41 // Schedules tear-down of this stub. The underlying NPObject reference is |
| 42 // released, and further invokations form the IPC channel will fail once this | 42 // released, and further invokations form the IPC channel will fail once this |
| 43 // call has returned. Deletion of the stub is deferred to the main loop, in | 43 // call has returned. Deletion of the stub is deferred to the main loop, in |
| 44 // case it is touched as the stack unwinds. | 44 // case it is touched as the stack unwinds. DeleteSoon() is safe to call |
| 45 // more than once, until control returns to the main loop. |
| 45 void DeleteSoon(); | 46 void DeleteSoon(); |
| 46 | 47 |
| 47 // IPC::Message::Sender implementation: | 48 // IPC::Message::Sender implementation: |
| 48 virtual bool Send(IPC::Message* msg) OVERRIDE; | 49 virtual bool Send(IPC::Message* msg) OVERRIDE; |
| 49 | 50 |
| 50 // NPObjectBase implementation. | 51 // NPObjectBase implementation. |
| 51 virtual NPObject* GetUnderlyingNPObject() OVERRIDE; | 52 virtual NPObject* GetUnderlyingNPObject() OVERRIDE; |
| 52 virtual IPC::Channel::Listener* GetChannelListener() OVERRIDE; | 53 virtual IPC::Channel::Listener* GetChannelListener() OVERRIDE; |
| 53 | 54 |
| 54 private: | 55 private: |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 NPObject* npobject_; | 87 NPObject* npobject_; |
| 87 scoped_refptr<NPChannelBase> channel_; | 88 scoped_refptr<NPChannelBase> channel_; |
| 88 int route_id_; | 89 int route_id_; |
| 89 gfx::NativeViewId containing_window_; | 90 gfx::NativeViewId containing_window_; |
| 90 | 91 |
| 91 // The url of the main frame hosting the plugin. | 92 // The url of the main frame hosting the plugin. |
| 92 GURL page_url_; | 93 GURL page_url_; |
| 93 }; | 94 }; |
| 94 | 95 |
| 95 #endif // CONTENT_COMMON_NPOBJECT_STUB_H_ | 96 #endif // CONTENT_COMMON_NPOBJECT_STUB_H_ |
| OLD | NEW |