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

Unified Diff: lib/html/src/dartium_MutationObserverSupported.dart

Issue 10951016: Fixing up measurement test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removing static modifier from isMutationObserverSupported. Created 8 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: lib/html/src/dartium_MutationObserverSupported.dart
diff --git a/lib/html/dartium/nativewrappers.dart b/lib/html/src/dartium_MutationObserverSupported.dart
similarity index 59%
copy from lib/html/dartium/nativewrappers.dart
copy to lib/html/src/dartium_MutationObserverSupported.dart
index 44ab39e1ac7567e620f8402b566e4b492836d41e..8d194de49a741c03a9d6b96154115ae976771871 100644
--- a/lib/html/dartium/nativewrappers.dart
+++ b/lib/html/src/dartium_MutationObserverSupported.dart
@@ -2,7 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#library('nativewrappers');
-
-class NativeFieldWrapperClass1 {
+/**
+ * Checks to see if the mutation observer API is supported on the current
+ * platform.
+ */
+bool _isMutationObserverSupported() {
+ return true;
}
« no previous file with comments | « lib/html/src/dart2js_MutationObserverSupported.dart ('k') | lib/html/templates/html/dart2js/html_dart2js.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698