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

Unified Diff: webkit/glue/plugins/webplugin_delegate_impl_win.cc

Issue 181014: Eliminate remaining WebCore dependencies from webplugin_impl.cc... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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: webkit/glue/plugins/webplugin_delegate_impl_win.cc
===================================================================
--- webkit/glue/plugins/webplugin_delegate_impl_win.cc (revision 25087)
+++ webkit/glue/plugins/webplugin_delegate_impl_win.cc (working copy)
@@ -245,12 +245,12 @@
}
}
-void WebPluginDelegateImpl::PlatformInitialize(WebPlugin* plugin) {
- plugin->SetWindow(windowed_handle_);
+void WebPluginDelegateImpl::PlatformInitialize() {
+ plugin_->SetWindow(windowed_handle_);
if (windowless_) {
CreateDummyWindowForActivation();
handle_event_pump_messages_event_ = CreateEvent(NULL, TRUE, FALSE, NULL);
- plugin->SetWindowlessPumpEvent(handle_event_pump_messages_event_);
+ plugin_->SetWindowlessPumpEvent(handle_event_pump_messages_event_);
}
// The windowless version of the Silverlight plugin calls the

Powered by Google App Engine
This is Rietveld 408576698