flutter-idea/src/io/flutter/performance/FlutterPerformanceView.java [278:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void showForApp(@NotNull FlutterApp app) {
    final PerfViewAppState appState = perAppViewState.get(app);
    if (appState != null) {
      final ToolWindow toolWindow = ToolWindowManager.getInstance(myProject).getToolWindow(TOOL_WINDOW_ID);
      if (toolWindow != null) {
        toolWindow.getContentManager().setSelectedContent(appState.content);
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/src/io/flutter/performance/FlutterPerformanceView.java [288:296]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void showForAppRebuildCounts(@NotNull FlutterApp app) {
    final PerfViewAppState appState = perAppViewState.get(app);
    if (appState != null) {
      final ToolWindow toolWindow = ToolWindowManager.getInstance(myProject).getToolWindow(TOOL_WINDOW_ID);
      if (toolWindow != null) {
        toolWindow.getContentManager().setSelectedContent(appState.content);
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



