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

Unified Diff: tools/dom/templates/html/dartium/svg_dartium.darttemplate

Issue 1321613005: Dartium w/ JsInterop enabled (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/dartium/svg_dartium.darttemplate
diff --git a/tools/dom/templates/html/dartium/svg_dartium.darttemplate b/tools/dom/templates/html/dartium/svg_dartium.darttemplate
index 6dff8b63eeb35bd7117763baa2560f1f1d5391c5..2c4f92d95cbe100dca20a6250ea89d0d4407596a 100644
--- a/tools/dom/templates/html/dartium/svg_dartium.darttemplate
+++ b/tools/dom/templates/html/dartium/svg_dartium.darttemplate
@@ -18,9 +18,15 @@ import 'dart:html';
import 'dart:html_common';
import 'dart:nativewrappers';
import 'dart:_blink' as _blink;
+import 'dart:js' as js;
part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart';
+// Need a default constructor for constructing classes with mixins that are
+// also extending NativeFieldWrapperClass2. Defining JsoNativeFieldWrapper
+// extending NativeFieldWrapperClass2 creates a default constructor.
+class JsoNativeFieldWrapper extends NativeFieldWrapperClass2 {}
+
$!GENERATED_DART_FILES
// FIXME: Can we make this private?
final svgBlinkMap = {

Powered by Google App Engine
This is Rietveld 408576698