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

Unified Diff: client/dom/generated/src/wrapping/_JavaScriptCallFrameWrappingImplementation.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/_JavaScriptCallFrameWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_JavaScriptCallFrameWrappingImplementation.dart b/client/dom/generated/src/wrapping/_JavaScriptCallFrameWrappingImplementation.dart
index e2fa087f40b772a750546e8caf4c0639bcdcebb3..6af08f3ddc4fd0da2230857e66442637422de19b 100644
--- a/client/dom/generated/src/wrapping/_JavaScriptCallFrameWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_JavaScriptCallFrameWrappingImplementation.dart
@@ -11,26 +11,26 @@ class _JavaScriptCallFrameWrappingImplementation extends DOMWrapperBase implemen
return new _JavaScriptCallFrameWrappingImplementation();
}
- JavaScriptCallFrame get caller() { return _get__JavaScriptCallFrame_caller(this); }
- static JavaScriptCallFrame _get__JavaScriptCallFrame_caller(var _this) native;
+ JavaScriptCallFrame get caller() { return _get_caller(this); }
+ static JavaScriptCallFrame _get_caller(var _this) native;
- int get column() { return _get__JavaScriptCallFrame_column(this); }
- static int _get__JavaScriptCallFrame_column(var _this) native;
+ int get column() { return _get_column(this); }
+ static int _get_column(var _this) native;
- String get functionName() { return _get__JavaScriptCallFrame_functionName(this); }
- static String _get__JavaScriptCallFrame_functionName(var _this) native;
+ String get functionName() { return _get_functionName(this); }
+ static String _get_functionName(var _this) native;
- int get line() { return _get__JavaScriptCallFrame_line(this); }
- static int _get__JavaScriptCallFrame_line(var _this) native;
+ int get line() { return _get_line(this); }
+ static int _get_line(var _this) native;
- List get scopeChain() { return _get__JavaScriptCallFrame_scopeChain(this); }
- static List _get__JavaScriptCallFrame_scopeChain(var _this) native;
+ List get scopeChain() { return _get_scopeChain(this); }
+ static List _get_scopeChain(var _this) native;
- int get sourceID() { return _get__JavaScriptCallFrame_sourceID(this); }
- static int _get__JavaScriptCallFrame_sourceID(var _this) native;
+ int get sourceID() { return _get_sourceID(this); }
+ static int _get_sourceID(var _this) native;
- String get type() { return _get__JavaScriptCallFrame_type(this); }
- static String _get__JavaScriptCallFrame_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
void evaluate(String script) {
_evaluate(this, script);

Powered by Google App Engine
This is Rietveld 408576698