bug 851520 part 1 - expose systemDefaultScale attribute on nsIScreenManager. r=roc

This commit is contained in:
Jonathan Kew
2013-04-09 14:28:55 +01:00
parent 8e705a16c6
commit f1fd1e6bc5
8 changed files with 69 additions and 1 deletions

View File

@@ -105,3 +105,9 @@ nsScreenManagerAndroid::GetNumberOfScreens(uint32_t *aNumberOfScreens)
return NS_OK;
}
NS_IMETHODIMP
nsScreenManagerAndroid::GetSystemDefaultScale(float *aDefaultScale)
{
*aDefaultScale = 1.0f;
return NS_OK;
}