[flatland] Update bug numbers. (#37880)

diff --git a/shell/platform/fuchsia/flutter/engine.cc b/shell/platform/fuchsia/flutter/engine.cc
index 1d491d3..d623804 100644
--- a/shell/platform/fuchsia/flutter/engine.cc
+++ b/shell/platform/fuchsia/flutter/engine.cc
@@ -744,7 +744,7 @@
 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 0e23a1f..ec7846a 100644
--- a/shell/platform/fuchsia/flutter/flatland_connection.cc
+++ b/shell/platform/fuchsia/flutter/flatland_connection.cc
@@ -54,7 +54,7 @@
   --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 @@
 
   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 @@
     std::scoped_lock<std::mutex> 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 617f22b..4d8d948 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 @@
           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 6766c26..0922661 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::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(