(Part 1) Get rid of LayerController.getLayerClient()

This commit is contained in:
Kartikaya Gupta 2012-02-17 09:32:24 -05:00
Родитель 357cb8e480
Коммит 79bfcbfa4e
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -574,13 +574,14 @@ abstract public class GeckoApp
}
public void run() {
if (mLayerClient == null) {
return;
}
synchronized (mLayerClient) {
if (!Tabs.getInstance().isSelectedTab(mThumbnailTab))
return;
if (getLayerController().getLayerClient() != mLayerClient)
return;
HistoryEntry lastHistoryEntry = mThumbnailTab.getLastHistoryEntry();
if (lastHistoryEntry == null)
return;

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

@ -135,7 +135,6 @@ public class LayerController {
mForceRedraw = true;
}
public LayerClient getLayerClient() { return mLayerClient; }
public Layer getRoot() { return mRootLayer; }
public LayerView getView() { return mView; }
public Context getContext() { return mContext; }