Bug 795811 - Make GetPrimaryScrollableLayer() return null on all configurations except MOZ_WIDGET_ANDROID r=cjones

This commit is contained in:
David Zbarsky 2012-10-02 00:19:56 -04:00
Родитель ebf13b399e
Коммит 8f5b3abb00
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -200,6 +200,12 @@ namespace layers {
Layer*
LayerManager::GetPrimaryScrollableLayer()
{
// AsyncPanZoomController handles multiple scrollable layers, so there is no
// "primary" scrollable layer.
#ifndef MOZ_WIDGET_ANDROID
return nullptr;
#endif
if (!mRoot) {
return nullptr;
}