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

Unified Diff: client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart b/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
index a344aeb8f1dfa66ed574a71a454092013a9a7706..73134b8a39261ce6c5a5b2873991c6c9cb1f7c92 100644
--- a/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
@@ -24,7 +24,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
return;
}
- void pushState(Object data, String title, [String url = null]) {
+ void pushState(Object data, String title, [String url]) {
if (url === null) {
_ptr.pushState(LevelDom.unwrapMaybePrimitive(data), title);
return;
@@ -34,7 +34,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
}
}
- void replaceState(Object data, String title, [String url = null]) {
+ void replaceState(Object data, String title, [String url]) {
if (url === null) {
_ptr.replaceState(LevelDom.unwrapMaybePrimitive(data), title);
return;

Powered by Google App Engine
This is Rietveld 408576698