diff --git a/shell/platform/fuchsia/flutter/engine.cc b/shell/platform/fuchsia/flutter/engine.cc index 1d491d393302c..d623804c1712b 100644 --- a/shell/platform/fuchsia/flutter/engine.cc +++ b/shell/platform/fuchsia/flutter/engine.cc @@ -744,7 +744,7 @@ void Engine::Terminate() { void Engine::DebugWireframeSettingsChanged(bool enabled) { FML_CHECK(shell_); - // TODO(fxbug.dev/94000): Investigate if we can add flatland wireframe code + // TODO(fxbug.dev/116000): Investigate if we can add flatland wireframe code // for debugging. shell_->GetTaskRunners().GetRasterTaskRunner()->PostTask([this, enabled]() { if (external_view_embedder_) { diff --git a/shell/platform/fuchsia/flutter/flatland_connection.cc b/shell/platform/fuchsia/flutter/flatland_connection.cc index 0e23a1fb9fc1d..ec7846a5ed1c0 100644 --- a/shell/platform/fuchsia/flutter/flatland_connection.cc +++ b/shell/platform/fuchsia/flutter/flatland_connection.cc @@ -54,7 +54,7 @@ void FlatlandConnection::DoPresent() { --present_credits_; fuchsia::ui::composition::PresentArgs present_args; - // TODO(fxbug.dev/94000): compute a better presentation time; + // TODO(fxbug.dev/114588): compute a better presentation time; present_args.set_requested_presentation_time(0); present_args.set_acquire_fences(std::move(acquire_fences_)); present_args.set_release_fences(std::move(previous_present_release_fences_)); @@ -86,7 +86,7 @@ void FlatlandConnection::AwaitVsync(FireCallbackCallback callback) { if (threadsafe_state_.fire_callback_pending_) { fml::TimePoint now = fml::TimePoint::Now(); - // TODO(fxbug.dev/94000): Calculate correct frame times. + // TODO(fxbug.dev/114588): Calculate correct frame times. threadsafe_state_.fire_callback_( now, now + kDefaultFlatlandPresentationInterval); threadsafe_state_.fire_callback_ = nullptr; @@ -121,7 +121,7 @@ void FlatlandConnection::OnNextFrameBegin( std::scoped_lock lock(threadsafe_state_.mutex_); if (threadsafe_state_.fire_callback_) { fml::TimePoint now = fml::TimePoint::Now(); - // TODO(fxbug.dev/94000): Calculate correct frame times. + // TODO(fxbug.dev/114588): Calculate correct frame times. threadsafe_state_.fire_callback_( now, now + kDefaultFlatlandPresentationInterval); threadsafe_state_.fire_callback_ = nullptr; diff --git a/shell/platform/fuchsia/flutter/flatland_external_view_embedder.cc b/shell/platform/fuchsia/flutter/flatland_external_view_embedder.cc index 617f22bd46277..4d8d948e6ee67 100644 --- a/shell/platform/fuchsia/flutter/flatland_external_view_embedder.cc +++ b/shell/platform/fuchsia/flutter/flatland_external_view_embedder.cc @@ -288,8 +288,6 @@ void FlatlandExternalViewEmbedder::SubmitFrame( viewport.mutators.transform = view_mutators.transform; } - // TODO(fxbug.dev/94000): Set HitTestBehavior. - // Set clip regions. if (view_mutators.clips != viewport.mutators.clips) { // Expand the clip_transforms array to fit any new transforms. diff --git a/shell/platform/fuchsia/flutter/flatland_platform_view.cc b/shell/platform/fuchsia/flutter/flatland_platform_view.cc index 6766c26da1846..0922661723f71 100644 --- a/shell/platform/fuchsia/flutter/flatland_platform_view.cc +++ b/shell/platform/fuchsia/flutter/flatland_platform_view.cc @@ -113,7 +113,7 @@ void FlatlandPlatformView::OnGetLayout( void FlatlandPlatformView::OnParentViewportStatus( fuchsia::ui::composition::ParentViewportStatus status) { - // TODO(fxbug.dev/94000): Investigate if it is useful to send hidden/shown + // TODO(fxbug.dev/116001): Investigate if it is useful to send hidden/shown // signals. parent_viewport_status_ = status; parent_viewport_watcher_->GetStatus(