Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
deb9d0b3
Commit
deb9d0b3
authored
Feb 13, 2016
by
Adam Barth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to dart:ui_internals
This library is being folded into dart:ui. Fixes #83
parent
aa90a9f4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
child_view.dart
packages/flutter/lib/src/rendering/child_view.dart
+2
-2
asset_bundle.dart
packages/flutter/lib/src/services/asset_bundle.dart
+2
-2
binding.dart
packages/flutter/lib/src/services/binding.dart
+4
-4
service_registry.dart
packages/flutter/lib/src/services/service_registry.dart
+2
-2
No files found.
packages/flutter/lib/src/rendering/child_view.dart
View file @
deb9d0b3
...
...
@@ -3,7 +3,7 @@
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:ui
_internals'
as
internals
;
import
'dart:ui
'
as
ui
;
import
'package:flutter/services.dart'
;
import
'package:mojo_services/mojo/gfx/composition/scene_token.mojom.dart'
as
mojom
;
...
...
@@ -18,7 +18,7 @@ import 'box.dart';
import
'object.dart'
;
mojom
.
ViewHostProxy
_initViewHostProxy
(
)
{
int
viewHost
=
internals
.
takeViewHostHandle
();
int
viewHost
=
ui
.
takeViewHostHandle
();
assert
(()
{
if
(
viewHost
==
0
)
debugPrint
(
'Child view are supported only when running in Mojo shell.'
);
...
...
packages/flutter/lib/src/services/asset_bundle.dart
View file @
deb9d0b3
...
...
@@ -3,7 +3,7 @@
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:ui
_internals'
as
internals
;
import
'dart:ui
'
as
ui
;
import
'dart:typed_data'
;
import
'package:flutter/http.dart'
as
http
;
...
...
@@ -95,7 +95,7 @@ class MojoAssetBundle extends CachingAssetBundle {
AssetBundle
_initRootBundle
(
)
{
try
{
AssetBundleProxy
bundle
=
new
AssetBundleProxy
.
fromHandle
(
new
core
.
MojoHandle
(
internals
.
takeRootBundleHandle
())
new
core
.
MojoHandle
(
ui
.
takeRootBundleHandle
())
);
return
new
MojoAssetBundle
(
bundle
);
}
catch
(
e
)
{
...
...
packages/flutter/lib/src/services/binding.dart
View file @
deb9d0b3
...
...
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:ui
_internals'
as
internals
;
import
'dart:ui
'
as
ui
;
import
'package:mojo/application.dart'
;
import
'package:mojo/bindings.dart'
as
bindings
;
...
...
@@ -55,7 +55,7 @@ abstract class MojoShell extends BindingBase {
static
MojoShell
get
instance
=>
_instance
;
static
mojom
.
ShellProxy
_initShellProxy
()
{
core
.
MojoHandle
shellHandle
=
new
core
.
MojoHandle
(
internals
.
takeShellProxyHandle
());
core
.
MojoHandle
shellHandle
=
new
core
.
MojoHandle
(
ui
.
takeShellProxyHandle
());
if
(!
shellHandle
.
isValid
)
return
null
;
return
new
mojom
.
ShellProxy
.
fromHandle
(
shellHandle
);
...
...
@@ -63,8 +63,8 @@ abstract class MojoShell extends BindingBase {
final
mojom
.
Shell
_shell
=
_initShellProxy
()?.
ptr
;
static
ApplicationConnection
_initEmbedderConnection
()
{
core
.
MojoHandle
servicesHandle
=
new
core
.
MojoHandle
(
internals
.
takeServicesProvidedByEmbedder
());
core
.
MojoHandle
exposedServicesHandle
=
new
core
.
MojoHandle
(
internals
.
takeServicesProvidedToEmbedder
());
core
.
MojoHandle
servicesHandle
=
new
core
.
MojoHandle
(
ui
.
takeServicesProvidedByEmbedder
());
core
.
MojoHandle
exposedServicesHandle
=
new
core
.
MojoHandle
(
ui
.
takeServicesProvidedToEmbedder
());
if
(!
servicesHandle
.
isValid
||
!
exposedServicesHandle
.
isValid
)
return
null
;
mojom
.
ServiceProviderProxy
services
=
new
mojom
.
ServiceProviderProxy
.
fromHandle
(
servicesHandle
);
...
...
packages/flutter/lib/src/services/service_registry.dart
View file @
deb9d0b3
...
...
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:ui
_internals'
as
internals
;
import
'dart:ui
'
as
ui
;
import
'package:mojo_services/mojo/service_registry.mojom.dart'
;
import
'package:mojo/core.dart'
as
core
;
ServiceRegistryProxy
_initServiceRegistryProxy
(
)
{
core
.
MojoHandle
serviceRegistryHandle
=
new
core
.
MojoHandle
(
internals
.
takeServiceRegistry
());
core
.
MojoHandle
serviceRegistryHandle
=
new
core
.
MojoHandle
(
ui
.
takeServiceRegistry
());
if
(!
serviceRegistryHandle
.
isValid
)
return
null
;
return
new
ServiceRegistryProxy
.
fromHandle
(
serviceRegistryHandle
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment