mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This file doesn't belong in the SDK because it is an implementation detail of the Sky engine. Instead, this CL moves the code for dart:sky.internals into the snapshot. This CL is a step towards merging dart:sky.internals with dart:sky, which also resides in the snapshot. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1200953007.
17 lines
687 B
Dart
17 lines
687 B
Dart
// Copyright 2015 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.
|
|
|
|
library sky.internals;
|
|
|
|
// TODO(abarth): Move these functions into dart:sky
|
|
|
|
String contentAsText() native "contentAsText";
|
|
String renderTreeAsText() native "renderTreeAsText";
|
|
void notifyTestComplete(String test_result) native "notifyTestComplete";
|
|
|
|
int takeShellProxyHandle() native "takeShellProxyHandle";
|
|
int takeServicesProvidedByEmbedder() native "takeServicesProvidedByEmbedder";
|
|
int takeServicesProvidedToEmbedder() native "takeServicesProvidedToEmbedder";
|
|
int takeServiceRegistry() native "takeServiceRegistry";
|