Skip to content
Snippets Groups Projects
Commit ff046e81 authored by kbr@google.com's avatar kbr@google.com
Browse files

Fixed crash in Internet Explorer on Windows XP caused by recent

full-screen changes in http://codereview.chromium.org/210005 . Call
CComControlBase::IOleInPlaceObject_SetObjectRects directly as the
superclass implementation of CHostControl::SetObjectRects.

Review URL: http://codereview.chromium.org/216055

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26870 0039d316-1c4b-4281-b951-d872f2087c98
parent 65686b9f
No related branches found
No related tags found
No related merge requests found
......@@ -568,8 +568,8 @@ STDMETHODIMP CHostControl::SetObjectRects(LPCRECT lprcPosRect,
}
}
return IOleInPlaceObjectWindowlessImpl::SetObjectRects(lprcPosRect,
lprcClipRect);
return CComControlBase::IOleInPlaceObject_SetObjectRects(lprcPosRect,
lprcClipRect);
}
HRESULT CHostControl::GetStringProperty(NPPVariable np_property_variable,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment