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

Side by Side Diff: chrome/plugin/webplugin_delegate_stub.h

Issue 258026: Fix scripting during NPP_Destroy. Note that if the plugin is making a call t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698