| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
| 6 | 6 |
| 7 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS
{ | 7 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
| 8 factory $CLASSNAME(String title, {withCredentials: false}) { | 8 factory $CLASSNAME(String title, {withCredentials: false}) { |
| 9 var parsedOptions = { | 9 var parsedOptions = { |
| 10 'withCredentials': withCredentials, | 10 'withCredentials': withCredentials, |
| 11 }; | 11 }; |
| 12 return $CLASSNAME._factory$CLASSNAME(title, parsedOptions); | 12 return $CLASSNAME._factory$CLASSNAME(title, parsedOptions); |
| 13 } | 13 } |
| 14 $!MEMBERS | 14 $!MEMBERS |
| 15 } | 15 } |
| OLD | NEW |