(html) remove type parameter from callback argument

This was a case missed when fixing #33891, and fixes #36798

Change-Id: I96e177a7d8020635e191d829afdec45f888658a9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127500
Reviewed-by: Alan Knight <alanknight@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Sigmund Cherem <sigmund@google.com>
This commit is contained in:
Sigmund Cherem 2019-12-06 19:02:02 +00:00 committed by commit-bot@chromium.org
parent 652926bbaf
commit 16bc1806ea
3 changed files with 3 additions and 4 deletions

View file

@ -25216,8 +25216,7 @@ class ResizeObserver extends Interceptor {
// WARNING: Do not edit - generated code.
typedef void ResizeObserverCallback(
List<ResizeObserverEntry> entries, ResizeObserver observer);
typedef void ResizeObserverCallback(List entries, ResizeObserver observer);
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

View file

@ -25215,8 +25215,7 @@ class ResizeObserver extends Interceptor {
// WARNING: Do not edit - generated code.
typedef void ResizeObserverCallback(
List<ResizeObserverEntry> entries, ResizeObserver observer);
typedef void ResizeObserverCallback(List entries, ResizeObserver observer);
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

View file

@ -150,6 +150,7 @@ _callback_list_generics_mapping = monitored.Set(
'List<IntersectionObserverEntry>',
'List<MutationRecord>',
'List<_Report>',
'List<ResizeObserverEntry>',
])