diff options
Diffstat (limited to 'webkit/glue/plugins/webplugin_delegate_impl.cc')
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl.cc | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl.cc b/webkit/glue/plugins/webplugin_delegate_impl.cc index fd97706..38fdde7 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl.cc +++ b/webkit/glue/plugins/webplugin_delegate_impl.cc @@ -137,9 +137,7 @@ WebPluginDelegateImpl::WebPluginDelegateImpl( handle_event_depth_(0), user_gesture_message_posted_(false), #pragma warning(suppress: 4355) // can use this - user_gesture_msg_factory_(this), - load_manually_(false), - first_geometry_update_(true) { + user_gesture_msg_factory_(this) { memset(&window_, 0, sizeof(window_)); const WebPluginInfo& plugin_info = instance_->plugin_lib()->plugin_info(); @@ -243,7 +241,6 @@ bool WebPluginDelegateImpl::Initialize(const GURL& url, plugin->SetWindow(windowed_handle_, handle_event_pump_messages_event_); - load_manually_ = load_manually; plugin_url_ = url.spec(); return true; } @@ -279,16 +276,6 @@ void WebPluginDelegateImpl::UpdateGeometry( } else { WindowedUpdateGeometry(window_rect, clip_rect, cutout_rects, visible); } - - // Initiate a download on the plugin url. This should be done for the - // first update geometry sequence. - if (first_geometry_update_) { - first_geometry_update_ = false; - // An empty url corresponds to an EMBED tag with no src attribute. - if (!load_manually_ && !plugin_url_.empty()) { - instance_->SendStream(plugin_url_.c_str(), false, NULL); - } - } } void WebPluginDelegateImpl::Paint(HDC hdc, const gfx::Rect& rect) { |