Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5979f94

Browse files
committed
Remove unused constants
1 parent 2a7e219 commit 5979f94

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

shell/platform/windows/keyboard_key_handler.cc

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,6 @@ namespace flutter {
1414

1515
namespace {
1616

17-
static constexpr char kChannelName[] = "flutter/keyevent";
18-
19-
static constexpr char kKeyCodeKey[] = "keyCode";
20-
static constexpr char kScanCodeKey[] = "scanCode";
21-
static constexpr char kCharacterCodePointKey[] = "characterCodePoint";
22-
static constexpr char kModifiersKey[] = "modifiers";
23-
static constexpr char kKeyMapKey[] = "keymap";
24-
static constexpr char kTypeKey[] = "type";
25-
static constexpr char kHandledKey[] = "handled";
26-
27-
static constexpr char kWindowsKeyMap[] = "windows";
28-
static constexpr char kKeyUp[] = "keyup";
29-
static constexpr char kKeyDown[] = "keydown";
30-
3117
// The maximum number of pending events to keep before
3218
// emitting a warning on the console about unhandled events.
3319
static constexpr int kMaxPendingEvents = 1000;
@@ -148,7 +134,6 @@ bool KeyboardKeyHandler::RemoveRedispatchedEvent(const PendingEvent& incoming) {
148134
}
149135
}
150136
return false;
151-
;
152137
}
153138

154139
void KeyboardKeyHandler::ResolvePendingEvent(uint64_t sequence_id,

0 commit comments

Comments
 (0)