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

Unified Diff: lib/html/frog/html_frog.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 10631016: Fix ShadowRoot constructor for dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/dom/templates/html/frog/factoryprovider_ShadowRoot.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index d7e2f1e1839a2ec97a990c869f682428af8bfb37..8f9751144b4dc4fc8d74be61587fc89ed26a2728 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -17557,8 +17557,9 @@ class _SessionDescriptionFactoryProvider {
// BSD-style license that can be found in the LICENSE file.
class _ShadowRootFactoryProvider {
- factory ShadowRoot(Element host) native
- '''return new ShadowRoot(host);''';
+ factory ShadowRoot(Element host) native '''
+ return new WebKitShadowRoot(host);
+ ''';
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « lib/dom/templates/html/frog/factoryprovider_ShadowRoot.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698