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

Side by Side Diff: sdk/lib/html/templates/html/interface/interface_DocumentFragment.darttemplate

Issue 11365019: Merging dart:html interfaces and implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing merged classes in dartium not compiling under dartc. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 html; 5 part of html;
6 6
7 $!COMMENT 7 $!COMMENT
8 abstract class DocumentFragment extends Element { 8 abstract class _IDocumentFragment extends Element {
9 9
10 factory DocumentFragment() => _$(ID)FactoryProvider.createDocumentFragment(); 10 factory _IDocumentFragment() => _$(ID)FactoryProvider.createDocumentFragment() ;
11 11
12 factory DocumentFragment.html(String html) => 12 factory _IDocumentFragment.html(String html) =>
13 _$(ID)FactoryProvider.createDocumentFragment_html(html); 13 _$(ID)FactoryProvider.createDocumentFragment_html(html);
14 14
15 // TODO(nweiz): enable this when XML is ported 15 // TODO(nweiz): enable this when XML is ported
16 // /** WARNING: Currently this doesn't work on Dartium (issue 649). */ 16 // /** WARNING: Currently this doesn't work on Dartium (issue 649). */
17 // DocumentFragment.xml(String xml); 17 // DocumentFragment.xml(String xml);
18 18
19 factory DocumentFragment.svg(String svg) => 19 factory DocumentFragment.svg(String svg) =>
20 new _$(ID)FactoryProvider.DocumentFragment.svg(svg); 20 new _$(ID)FactoryProvider.createDocumentFragment_svg(svg);
21 21
22 DocumentFragment clone(bool deep); 22 DocumentFragment clone(bool deep);
23 23
24 $!MEMBERS 24 $!MEMBERS
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698