Skip to content

Commit a344015

Browse files
authored
[fuchsia] Add flutter:: to scene_host.cc (flutter#8549)
1 parent 711d843 commit a344015

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/ui/compositing/scene_host.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
namespace {
2020

21-
using SceneHostBindings = std::unordered_map<zx_koid_t, SceneHost*>;
21+
using SceneHostBindings = std::unordered_map<zx_koid_t, flutter::SceneHost*>;
2222

2323
FML_THREAD_LOCAL fml::ThreadLocal tls_scene_host_bindings([](intptr_t value) {
2424
delete reinterpret_cast<SceneHostBindings*>(value);
2525
});
2626

2727
void SceneHost_constructor(Dart_NativeArguments args) {
28-
tonic::DartCallConstructor(&SceneHost::Create, args);
28+
tonic::DartCallConstructor(&flutter::SceneHost::Create, args);
2929
}
3030

3131
void SceneHost_constructorViewHolderToken(Dart_NativeArguments args) {
@@ -36,10 +36,10 @@ void SceneHost_constructorViewHolderToken(Dart_NativeArguments args) {
3636
reinterpret_cast<intptr_t>(new SceneHostBindings()));
3737
}
3838

39-
tonic::DartCallConstructor(&SceneHost::CreateViewHolder, args);
39+
tonic::DartCallConstructor(&flutter::SceneHost::CreateViewHolder, args);
4040
}
4141

42-
SceneHost* GetSceneHost(scenic::ResourceId id) {
42+
flutter::SceneHost* GetSceneHost(scenic::ResourceId id) {
4343
auto* bindings =
4444
reinterpret_cast<SceneHostBindings*>(tls_scene_host_bindings.Get());
4545
FML_DCHECK(bindings);

0 commit comments

Comments
 (0)