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

Unified Diff: chrome_frame/chrome_frame_activex_base.h

Issue 1718019: Fix a ChromeFrame crash reported on the crash server while processing an acce... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_activex_base.h
===================================================================
--- chrome_frame/chrome_frame_activex_base.h (revision 45481)
+++ chrome_frame/chrome_frame_activex_base.h (working copy)
@@ -914,6 +914,7 @@
// sent to the out of proc chromium instance.
// Returns S_OK iff the accelerator was handled by the browser.
HRESULT AllowFrameToTranslateAccelerator(const MSG& msg) {
+ static const int kMayTranslateAcceleratorOffset = 0x170;
// Although IBrowserService2 is officially deprecated, it's still alive
// and well in IE7 and earlier. We have to use it here to correctly give
// the browser a chance to handle keyboard shortcuts.
@@ -925,14 +926,18 @@
// owned by the out-of-proc chromium instance so IE doesn't have a chance to
// fall back on its default behavior. Instead we give IE a chance to
// handle the shortcut here.
-
MSG accel_message = msg;
accel_message.hwnd = ::GetParent(m_hWnd);
-
HRESULT hr = S_FALSE;
ScopedComPtr<IBrowserService2> bs2;
+ // The code below explicitly checks for whether the
+ // IBrowserService2::v_MayTranslateAccelerator function is valid. On IE8
+ // there is one vtable ieframe!c_ImpostorBrowserService2Vtbl where this
+ // function entry is NULL which leads to a crash. We don't know under what
+ // circumstances this vtable is actually used though.
if (S_OK == DoQueryService(SID_STopLevelBrowser, m_spInPlaceSite,
- bs2.Receive()) && bs2.get()) {
+ bs2.Receive()) && bs2.get() &&
+ (bs2 + kMayTranslateAcceleratorOffset)) {
hr = bs2->v_MayTranslateAccelerator(&accel_message);
} else {
// IE8 doesn't support IBrowserService2 unless you enable a special,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698