mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Also, add support for exposing services to <iframes>. This worked before but now that [Client=...] is gone we need to create another message pipe. R=sky@chromium.org Review URL: https://codereview.chromium.org/882723003
9 lines
322 B
Plaintext
9 lines
322 B
Plaintext
// Copyright 2014 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.
|
|
|
|
interface HTMLIFrameElement : HTMLElement {
|
|
[CallWith=ScriptState] any takeServicesHandle();
|
|
[CallWith=ScriptState] any takeExposedServicesHandle();
|
|
};
|