From c170a385aac20e906dd26322f104ca5e5c95e33f Mon Sep 17 00:00:00 2001 From: Zach Anderson Date: Thu, 11 Apr 2019 13:03:42 -0700 Subject: [PATCH] [fuchsia] Add flutter:: to scene_host.cc --- lib/ui/compositing/scene_host.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ui/compositing/scene_host.cc b/lib/ui/compositing/scene_host.cc index b3a9bc99147d9..4247fc247cb44 100644 --- a/lib/ui/compositing/scene_host.cc +++ b/lib/ui/compositing/scene_host.cc @@ -18,14 +18,14 @@ namespace { -using SceneHostBindings = std::unordered_map; +using SceneHostBindings = std::unordered_map; FML_THREAD_LOCAL fml::ThreadLocal tls_scene_host_bindings([](intptr_t value) { delete reinterpret_cast(value); }); void SceneHost_constructor(Dart_NativeArguments args) { - tonic::DartCallConstructor(&SceneHost::Create, args); + tonic::DartCallConstructor(&flutter::SceneHost::Create, args); } void SceneHost_constructorViewHolderToken(Dart_NativeArguments args) { @@ -36,10 +36,10 @@ void SceneHost_constructorViewHolderToken(Dart_NativeArguments args) { reinterpret_cast(new SceneHostBindings())); } - tonic::DartCallConstructor(&SceneHost::CreateViewHolder, args); + tonic::DartCallConstructor(&flutter::SceneHost::CreateViewHolder, args); } -SceneHost* GetSceneHost(scenic::ResourceId id) { +flutter::SceneHost* GetSceneHost(scenic::ResourceId id) { auto* bindings = reinterpret_cast(tls_scene_host_bindings.Get()); FML_DCHECK(bindings);