Followup to Bug 591139 - Define safeMode outside the ifdef so it can be used properly. r+=Bas. a=BustageFix

This commit is contained in:
Justin Wood 2010-08-28 23:10:25 -04:00
Родитель e72ec8f9e6
Коммит 9a8b85c404
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -228,6 +228,7 @@ gfxWindowsPlatform::gfxWindowsPlatform()
::GetVersionExA(&versionInfo);
bool isVistaOrHigher = versionInfo.dwMajorVersion >= 6;
PRBool safeMode = PR_FALSE;
#ifdef CAIRO_HAS_D2D_SURFACE
NS_RegisterMemoryReporter(new D2DCacheReporter());
NS_RegisterMemoryReporter(new D2DVRAMReporter());
@ -239,7 +240,6 @@ gfxWindowsPlatform::gfxWindowsPlatform()
d2dDisabled = PR_FALSE;
nsCOMPtr<nsIXULRuntime> xr = do_GetService("@mozilla.org/xre/runtime;1");
PRBool safeMode = PR_FALSE;
if (xr)
xr->GetInSafeMode(&safeMode);