summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl')
-rw-r--r--chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl15
1 files changed, 0 insertions, 15 deletions
diff --git a/chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl b/chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl
deleted file mode 100644
index 9a8536ab538..00000000000
--- a/chromium/third_party/blink/renderer/modules/font_access/font_iterator.idl
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2020 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// TODO(https://crbug.com/1062425): Determine if async iterator performance cost is worthwhile.
-// Async iterator returned by FontManager.query().
-// https://wicg.github.io/local-font-access/
-// https://www.ecma-international.org/ecma-262/9.0/index.html#sec-asynciterator-interface
-[
- SecureContext,
- LegacyNoInterfaceObject,
- RuntimeEnabled=FontAccess
-] interface FontIterator {
- [CallWith=ScriptState] Promise<any> next();
-};