From 01f77cd93e350b1698dd9ba02fa6a53cfc7da716 Mon Sep 17 00:00:00 2001 From: Tong Mu Date: Tue, 2 Apr 2024 14:26:55 -0700 Subject: [PATCH] Impl --- .../darwin/macos/framework/Source/FlutterCompositor.mm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shell/platform/darwin/macos/framework/Source/FlutterCompositor.mm b/shell/platform/darwin/macos/framework/Source/FlutterCompositor.mm index e7749ca0e539b..4c1630356a863 100644 --- a/shell/platform/darwin/macos/framework/Source/FlutterCompositor.mm +++ b/shell/platform/darwin/macos/framework/Source/FlutterCompositor.mm @@ -54,10 +54,6 @@ bool FlutterCompositor::Present(FlutterViewId view_id, const FlutterLayer** layers, size_t layers_count) { - // TODO(dkwingsmt): The macOS embedder only supports rendering to the implicit - // view for now. As it supports adding more views, this assertion should be - // lifted. https://github.com/flutter/flutter/issues/142845 - FML_DCHECK(view_id == kFlutterImplicitViewId); FlutterView* view = [view_provider_ viewForId:view_id]; if (!view) { return false;