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

Unified Diff: client/view/CompositeView.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
« client/html/src/Element.dart ('K') | « client/touch/Scroller.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/view/CompositeView.dart
===================================================================
--- client/view/CompositeView.dart (revision 1770)
+++ client/view/CompositeView.dart (working copy)
@@ -23,10 +23,14 @@
final bool _nestedContainer;
final bool _showScrollbar;
- CompositeView(String this._cssName, [this._nestedContainer = false,
- this._scrollable = false, this._vertical = false,
- this._showScrollbar = false])
+ CompositeView(String this._cssName, [nestedContainer = false,
+ scrollable = false, vertical = false,
+ showScrollbar = false])
: super(),
+ _nestedContainer = nestedContainer,
+ _scrollable = scrollable,
+ _vertical = vertical,
+ _showScrollbar = showScrollbar,
childViews = new List<View>() {
}
« client/html/src/Element.dart ('K') | « client/touch/Scroller.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698