Switch over to the new name for compilation trace native function (#25594) * Switch over to the new name for compilation trace native function. Also see: https://github.com/flutter/engine/pull/7256 * rename * roll the engine
diff --git a/packages/flutter_tools/lib/src/vmservice.dart b/packages/flutter_tools/lib/src/vmservice.dart index a14f27e..83f837a 100644 --- a/packages/flutter_tools/lib/src/vmservice.dart +++ b/packages/flutter_tools/lib/src/vmservice.dart
@@ -1312,9 +1312,9 @@ ); } - Future<List<int>> flutterDumpCompilationTrace() async { + Future<List<int>> flutterDebugSaveCompilationTrace() async { final Map<String, dynamic> result = - await invokeFlutterExtensionRpcRaw('ext.flutter.dumpCompilationTrace'); + await invokeFlutterExtensionRpcRaw('ext.flutter.saveCompilationTrace'); if (result != null && result['value'] is List<dynamic>) return result['value'].cast<int>(); return null;