@@ -93,7 +93,7 @@ std::weak_ptr<DartIsolate> DartIsolate::SpawnIsolate(
93
93
const fml::closure& isolate_shutdown_callback,
94
94
std::optional<std::string> dart_entrypoint,
95
95
std::optional<std::string> dart_entrypoint_library,
96
- std::unique_ptr<IsolateConfiguration> isolate_configration ) const {
96
+ std::unique_ptr<IsolateConfiguration> isolate_configuration ) const {
97
97
return CreateRunningRootIsolate (
98
98
settings, //
99
99
GetIsolateGroupData ().GetIsolateSnapshot (), //
@@ -104,7 +104,7 @@ std::weak_ptr<DartIsolate> DartIsolate::SpawnIsolate(
104
104
isolate_shutdown_callback, //
105
105
dart_entrypoint, //
106
106
dart_entrypoint_library, //
107
- std::move (isolate_configration), //
107
+ std::move (isolate_configuration), //
108
108
UIDartState::Context{GetTaskRunners (), //
109
109
snapshot_delegate, //
110
110
GetIOManager (), //
@@ -128,21 +128,21 @@ std::weak_ptr<DartIsolate> DartIsolate::CreateRunningRootIsolate(
128
128
const fml::closure& isolate_shutdown_callback,
129
129
std::optional<std::string> dart_entrypoint,
130
130
std::optional<std::string> dart_entrypoint_library,
131
- std::unique_ptr<IsolateConfiguration> isolate_configration ,
131
+ std::unique_ptr<IsolateConfiguration> isolate_configuration ,
132
132
const UIDartState::Context& context,
133
133
const DartIsolate* spawning_isolate) {
134
134
if (!isolate_snapshot) {
135
135
FML_LOG (ERROR) << " Invalid isolate snapshot." ;
136
136
return {};
137
137
}
138
138
139
- if (!isolate_configration ) {
139
+ if (!isolate_configuration ) {
140
140
FML_LOG (ERROR) << " Invalid isolate configuration." ;
141
141
return {};
142
142
}
143
143
144
144
isolate_flags.SetNullSafetyEnabled (
145
- isolate_configration ->IsNullSafetyEnabled (*isolate_snapshot));
145
+ isolate_configuration ->IsNullSafetyEnabled (*isolate_snapshot));
146
146
isolate_flags.SetIsDontNeedSafe (isolate_snapshot->IsDontNeedSafe ());
147
147
148
148
auto isolate = CreateRootIsolate (settings, //
@@ -173,7 +173,7 @@ std::weak_ptr<DartIsolate> DartIsolate::CreateRunningRootIsolate(
173
173
return {};
174
174
}
175
175
176
- if (!isolate_configration ->PrepareIsolate (*isolate.get ())) {
176
+ if (!isolate_configuration ->PrepareIsolate (*isolate.get ())) {
177
177
FML_LOG (ERROR) << " Could not prepare isolate." ;
178
178
return {};
179
179
}
0 commit comments