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

Unified Diff: sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate

Issue 11316064: Fixes that dart2js analyze-all found. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed whitespace Created 8 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: sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate
diff --git a/sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate b/sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate
index f1e5a8d34b1cc769c39bd2897dd2340886825cda..63cad24fc58b2ea340f6797e17d51377ff8719db 100644
--- a/sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate
+++ b/sdk/lib/html/templates/html/dart2js/factoryprovider_TextTrackCue.darttemplate
@@ -6,20 +6,20 @@ part of html;
class $FACTORYPROVIDER {
static TextTrackCue createTextTrackCue(
- String id, num startTime, num endTime, String text,
+ num startTime, num endTime, String text,
[String settings, bool pauseOnExit]) {
if (settings == null) {
return JS('TextTrackCue',
- 'new TextTrackCue(#,#,#,#)',
- id, startTime, endTime, text);
+ 'new TextTrackCue(#,#,#)',
+ startTime, endTime, text);
}
if (pauseOnExit == null) {
return JS('TextTrackCue',
- 'new TextTrackCue(#,#,#,#,#)',
- id, startTime, endTime, text, settings);
+ 'new TextTrackCue(#,#,#,#)',
+ startTime, endTime, text, settings);
}
return JS('TextTrackCue',
- 'new TextTrackCue(#,#,#,#,#,#)',
- id, startTime, endTime, text, settings, pauseOnExit);
+ 'new TextTrackCue(#,#,#,#,#)',
+ startTime, endTime, text, settings, pauseOnExit);
}
}
« no previous file with comments | « sdk/lib/html/scripts/systemhtml.py ('k') | sdk/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698