Bug 597469 - Provide window emulation for Dolphin products, r=surkov, a=blocking

This commit is contained in:
David Bolter 2010-09-17 14:43:38 -07:00
parent 6ef749733c
commit 48bb2880ab
2 changed files with 3 additions and 2 deletions

View File

@ -133,7 +133,8 @@ bool
nsWinUtils::IsWindowEmulationEnabled()
{
return ::GetModuleHandleW(kJAWSModuleHandle) ||
::GetModuleHandleW(kWEModuleHandle);
::GetModuleHandleW(kWEModuleHandle) ||
::GetModuleHandleW(kDolphnModuleHandle);
}
bool

View File

@ -51,7 +51,7 @@ const LPCWSTR kClassNameTabContent = L"MozillaContentWindowClass";
const LPCWSTR kJAWSModuleHandle = L"jhook";
const LPCWSTR kWEModuleHandle = L"gwm32inc";
const LPCWSTR kNVDAModuleHandle = L"VBufBackend_gecko_ia2";
const LPCWSTR kDolphnModuleHandle = L"dolwinhk";
class nsWinUtils
{