Changeset 106905 in webkit
- Timestamp:
- Feb 6, 2012, 9:45:01 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
inspector/front-end/DetailedHeapshotGridNodes.js (modified) (1 diff)
-
inspector/front-end/HeapSnapshot.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r106902 r106905 1 2012-02-06 Ilya Tikhonovsky <loislo@chromium.org> 2 3 Unreviewed. Web Inspector: rename Artificial to Synthetic according to v8 patch r10614. 4 5 * inspector/front-end/DetailedHeapshotGridNodes.js: 6 * inspector/front-end/HeapSnapshot.js: 7 (WebInspector.HeapSnapshotNode.prototype.get isSynthetic): 8 (WebInspector.HeapSnapshot.prototype._init): 9 1 10 2012-02-06 Hayato Ito <hayato@chromium.org> 2 11 -
trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js
r106808 r106905 405 405 var filter = "function(edge) {\n" + 406 406 " return !edge.isInvisible\n" + 407 " && (" + !this.showRetainingEdges + " || (edge.node.id !== 1 && !edge.node.is Artificial))\n" +407 " && (" + !this.showRetainingEdges + " || (edge.node.id !== 1 && !edge.node.isSynthetic))\n" + 408 408 " && (" + showHiddenData + " || (!edge.isHidden && !edge.node.isHidden));\n" + 409 409 "}\n"; -
trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js
r106779 r106905 567 567 }, 568 568 569 get is Artificial()570 { 571 return this._type() === this._snapshot._node ArtificialType;569 get isSynthetic() 570 { 571 return this._type() === this._snapshot._nodeSyntheticType; 572 572 }, 573 573 … … 712 712 this._nodeTypes = meta.types[this._nodeTypeOffset]; 713 713 this._nodeHiddenType = this._nodeTypes.indexOf("hidden"); 714 this._node ArtificialType = this._nodeTypes.indexOf("artificial");714 this._nodeSyntheticType = this._nodeTypes.indexOf("synthetic"); 715 715 var edgesMeta = meta.types[this._firstEdgeOffset]; 716 716 this._edgeFieldsCount = edgesMeta.fields.length;
Note:
See TracChangeset
for help on using the changeset viewer.