@Override
protected void gotoActionPerformed(AnActionEvent paramAnActionEvent) {
FeatureUsageTracker.getInstance().triggerFeatureUsed("navigation.popup.file");
Project localProject = paramAnActionEvent.getData(CommonDataKeys.PROJECT);
if (localProject != null) {
SymfonySymbolSearchModel searchModel = new SymfonySymbolSearchModel(localProject, new ChooseByNameContributor[] { new Symfony2NavigationContributor(localProject) });
showNavigationPopup(paramAnActionEvent, searchModel, new MyGotoCallback(), null, true);
}
}