| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 5 #ifndef CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| 6 #define CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 6 #define CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 | 9 |
| 10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 base::SharedMemory* shared_buf, | 94 base::SharedMemory* shared_buf, |
| 95 base::SharedMemoryHandle* remote_handle); | 95 base::SharedMemoryHandle* remote_handle); |
| 96 | 96 |
| 97 std::string mime_type_; | 97 std::string mime_type_; |
| 98 int instance_id_; | 98 int instance_id_; |
| 99 | 99 |
| 100 scoped_refptr<PluginChannel> channel_; | 100 scoped_refptr<PluginChannel> channel_; |
| 101 | 101 |
| 102 WebPluginDelegateImpl* delegate_; | 102 WebPluginDelegateImpl* delegate_; |
| 103 WebPluginProxy* webplugin_; | 103 WebPluginProxy* webplugin_; |
| 104 bool in_destructor_; |
| 104 | 105 |
| 105 // The url of the main frame hosting the plugin. | 106 // The url of the main frame hosting the plugin. |
| 106 GURL page_url_; | 107 GURL page_url_; |
| 107 | 108 |
| 108 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); | 109 DISALLOW_IMPLICIT_CONSTRUCTORS(WebPluginDelegateStub); |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ | 112 #endif // CHROME_PLUGIN_WEBPLUGIN_DELEGATE_STUB_H_ |
| OLD | NEW |