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

Unified Diff: sky/sdk/lib/framework/rendering/box.dart

Issue 1165983002: Stub out InkWell and implement Sky’s fn2 menu item (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
Index: sky/sdk/lib/framework/rendering/box.dart
diff --git a/sky/sdk/lib/framework/rendering/box.dart b/sky/sdk/lib/framework/rendering/box.dart
index f2b33fe86fe76457f15849ee758e171ce782aa57..b457ad0097f85c40e6094ec4b40cdefc9207c50d 100644
--- a/sky/sdk/lib/framework/rendering/box.dart
+++ b/sky/sdk/lib/framework/rendering/box.dart
@@ -26,6 +26,8 @@ class EdgeDims {
: top = value, right = 0.0, bottom = 0.0, left = 0.0;
const EdgeDims.onlyBottom(double value)
: top = 0.0, right = 0.0, bottom = value, left = 0.0;
+ const EdgeDims.symmetric(double vertical, double horizontal)
Hixie 2015/06/04 17:53:09 Not named?
jackson 2015/06/04 18:03:24 Done.
+ : top = vertical, right = horizontal, bottom = vertical, left = horizontal;
final double top;
final double right;

Powered by Google App Engine
This is Rietveld 408576698