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

Unified Diff: client/dom/generated/src/frog/ScriptProfileNode.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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
« no previous file with comments | « client/dom/generated/src/frog/ScriptProfile.dart ('k') | client/dom/generated/src/frog/SharedWorker.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/ScriptProfileNode.dart
diff --git a/client/dom/generated/src/frog/ScriptProfileNode.dart b/client/dom/generated/src/frog/ScriptProfileNode.dart
index 22ae191a6af4f3589b0e7e164316092105670dc4..756ca6ac772f07364d20815e190e6b976867b75a 100644
--- a/client/dom/generated/src/frog/ScriptProfileNode.dart
+++ b/client/dom/generated/src/frog/ScriptProfileNode.dart
@@ -1,23 +1,23 @@
class ScriptProfileNode native "*ScriptProfileNode" {
- int callUID;
+ int get callUID() native "return this.callUID;";
- List children;
+ List get children() native "return this.children;";
- String functionName;
+ String get functionName() native "return this.functionName;";
- int lineNumber;
+ int get lineNumber() native "return this.lineNumber;";
- int numberOfCalls;
+ int get numberOfCalls() native "return this.numberOfCalls;";
- num selfTime;
+ num get selfTime() native "return this.selfTime;";
- num totalTime;
+ num get totalTime() native "return this.totalTime;";
- String url;
+ String get url() native "return this.url;";
- bool visible;
+ bool get visible() native "return this.visible;";
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/ScriptProfile.dart ('k') | client/dom/generated/src/frog/SharedWorker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698