Bug 1183068 - TopSitesCursorWrapper: Add new interface method setExtras(Bundle). r=mhaigh

--HG--
extra : commitid : HkwRrcL988q
extra : amend_source : cada60488867f077e013fe50c7fe4b2c8a77b770
This commit is contained in:
Sebastian Kaspari 2015-08-11 11:54:38 +02:00
Родитель ab42648987
Коммит 32e0da13ce
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -486,6 +486,11 @@ public class TopSitesCursorWrapper implements Cursor {
throw new UnsupportedOperationException();
}
// @Override - Method has been introduced in Android M. Add @Override annotation as soon as we are building with the M SDK - Bug 1193205
public void setExtras(Bundle extras) {
throw new UnsupportedOperationException();
}
@Override
public boolean getWantsAllOnMoveCalls() {
return false;