From fe5611e8908cdf99a3c323ff9330fdc628f5e9c7 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Thu, 10 Mar 2022 12:29:01 -0800 Subject: [PATCH] Revert "Add a message when a key response takes too long. (#31945)" This reverts commit 6239bfb884239418dbd8d47bc0f07d9b7084b587. --- .../ios/framework/Source/FlutterKeyboardManager.mm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.mm b/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.mm index d75e06536c2dd..db6aeca077bac 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.mm @@ -7,7 +7,6 @@ #include "flutter/fml/platform/darwin/message_loop_darwin.h" static constexpr CFTimeInterval kDistantFuture = 1.0e10; -static constexpr CFTimeInterval kReasonableInterval = 2.0; @interface FlutterKeyboardManager () @@ -115,14 +114,7 @@ - (void)handlePress:(nonnull FlutterUIPressProxy*)press // // We need to run in this mode so that UIKit doesn't give us new // events until we are done processing this one. - CFRunLoopRunResult result = CFRunLoopRunInMode( - fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode, kReasonableInterval, NO); - if (result == kCFRunLoopRunTimedOut) { - NSLog(@"Flutter framework failed to process a key event in a reasonable time. Continuing " - @"to wait."); - CFRunLoopRunInMode(fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode, kDistantFuture, NO); - NSLog(@"Flutter framework finally responded. Exiting nested event loop."); - } + CFRunLoopRunInMode(fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode, kDistantFuture, NO); break; } case UIPressPhaseChanged: