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

Unified Diff: client/html/src/Element.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
« no previous file with comments | « no previous file | client/layout/SizingFunctions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/Element.dart
===================================================================
--- client/html/src/Element.dart (revision 1770)
+++ client/html/src/Element.dart (working copy)
@@ -17,7 +17,8 @@
final int pages;
final bool center;
- ScrollOptions([this.lines = 0, this.pages = 0, this.center = false]);
+ ScrollOptions([lines = 0, pages = 0, center = false])
+ : this.lines = lines, this.pages = pages, this.center = center;
}
sra1 2011/11/23 01:16:45 Revert this - jacob fixed it.
interface ElementEvents extends Events {
« no previous file with comments | « no previous file | client/layout/SizingFunctions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698