Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Unified Diff: sky/sdk/lib/framework/fn2.dart

Issue 1161323004: Export Point, Size, Rect, Color, Paint, Path, BoxDecoration, Border, BorderSide, EdgeDims, and Flex… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: without analyser changes Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/sdk/lib/framework/components2/tool_bar.dart ('k') | sky/sdk/lib/framework/rendering/block.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/fn2.dart
diff --git a/sky/sdk/lib/framework/fn2.dart b/sky/sdk/lib/framework/fn2.dart
index af76afc46d84961e7f64e10bc1a3f38b12343c1b..7178d8bffe67590c297cf3c0b7fb2470c99ca695 100644
--- a/sky/sdk/lib/framework/fn2.dart
+++ b/sky/sdk/lib/framework/fn2.dart
@@ -17,6 +17,9 @@ import 'rendering/flex.dart';
import 'rendering/object.dart';
import 'rendering/paragraph.dart';
import 'rendering/stack.dart';
+export 'rendering/object.dart' show Point, Size, Rect, Color, Paint, Path;
+export 'rendering/box.dart' show BoxDecoration, Border, BorderSide, EdgeDims;
+export 'rendering/flex.dart' show FlexDirection;
// final sky.Tracing _tracing = sky.window.tracing;
@@ -399,7 +402,7 @@ class DecoratedBox extends OneChildRenderObjectWrapper {
class SizedBox extends OneChildRenderObjectWrapper {
RenderSizedBox root;
- final sky.Size desiredSize;
+ final Size desiredSize;
SizedBox({ this.desiredSize, UINode child, Object key })
: super(child: child, key: key);
@@ -718,7 +721,7 @@ class Image extends RenderObjectWrapper {
RenderImage createNode() => new RenderImage(this.src, this.size);
final String src;
- final sky.Size size;
+ final Size size;
Image({
Object key,
@@ -958,7 +961,7 @@ class Container extends Component {
final Matrix4 transform;
final EdgeDims margin;
final BoxDecoration decoration;
- final sky.Size desiredSize;
+ final Size desiredSize;
final EdgeDims padding;
Container({
« no previous file with comments | « sky/sdk/lib/framework/components2/tool_bar.dart ('k') | sky/sdk/lib/framework/rendering/block.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698