Bug 1105795 - Avoid ClassCastException in testAboutHomeVisibility; r=mcomella

This commit is contained in:
Geoff Brown 2014-12-19 09:22:06 -07:00
Родитель ab927f0755
Коммит 18d594a471
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -122,8 +122,8 @@ public class ToolbarComponent extends BaseComponent {
/** /**
* Returns the View for the edit cancel button in the browser toolbar. * Returns the View for the edit cancel button in the browser toolbar.
*/ */
private ImageButton getEditCancelButton() { private View getEditCancelButton() {
return (ImageButton) getToolbarView().findViewById(R.id.edit_cancel); return getToolbarView().findViewById(R.id.edit_cancel);
} }
private String getTitle() { private String getTitle() {