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

Unified Diff: client/layout/SizingFunctions.dart

Issue 8666012: Partial fix to client breakage (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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: client/layout/SizingFunctions.dart
===================================================================
--- client/layout/SizingFunctions.dart (revision 1770)
+++ client/layout/SizingFunctions.dart (working copy)
@@ -39,8 +39,8 @@
// we need to correctly track whether we're content sized during a layout
bool _contentSized;
- FixedSizing(this.length, [this.units = 'px'])
- : super(),
+ FixedSizing(this.length, [units = 'px'])
+ : super(), this.units = units,
_contentSized = false {
if (units != 'px' && units != '%') {
// TODO(jmesserly): support other unit types

Powered by Google App Engine
This is Rietveld 408576698