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

Unified Diff: client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart
index 2a47830bd68695b4a99170a2fc254fb84b3752e3..1ee90530ab8bd38deb36abde0f4b26d75cab7664 100644
--- a/client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_MemoryInfoWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _MemoryInfoWrappingImplementation extends DOMWrapperBase implements Memory
return new _MemoryInfoWrappingImplementation();
}
- int get jsHeapSizeLimit() { return _get__MemoryInfo_jsHeapSizeLimit(this); }
- static int _get__MemoryInfo_jsHeapSizeLimit(var _this) native;
+ int get jsHeapSizeLimit() { return _get_jsHeapSizeLimit(this); }
+ static int _get_jsHeapSizeLimit(var _this) native;
- int get totalJSHeapSize() { return _get__MemoryInfo_totalJSHeapSize(this); }
- static int _get__MemoryInfo_totalJSHeapSize(var _this) native;
+ int get totalJSHeapSize() { return _get_totalJSHeapSize(this); }
+ static int _get_totalJSHeapSize(var _this) native;
- int get usedJSHeapSize() { return _get__MemoryInfo_usedJSHeapSize(this); }
- static int _get__MemoryInfo_usedJSHeapSize(var _this) native;
+ int get usedJSHeapSize() { return _get_usedJSHeapSize(this); }
+ static int _get_usedJSHeapSize(var _this) native;
String get typeName() { return "MemoryInfo"; }
}

Powered by Google App Engine
This is Rietveld 408576698