⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 106905 in webkit


Ignore:
Timestamp:
Feb 6, 2012, 9:45:01 PM (15 years ago)
Author:
loislo@chromium.org
Message:

Unreviewed. Web Inspector: rename Artificial to Synthetic according to v8 patch r10614.

  • inspector/front-end/DetailedHeapshotGridNodes.js:
  • inspector/front-end/HeapSnapshot.js:

(WebInspector.HeapSnapshotNode.prototype.get isSynthetic):
(WebInspector.HeapSnapshot.prototype._init):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r106902 r106905  
     12012-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
    1102012-02-06  Hayato Ito  <hayato@chromium.org>
    211
  • trunk/Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js

    r106808 r106905  
    405405        var filter = "function(edge) {\n" +
    406406            "    return !edge.isInvisible\n" +
    407             "        && (" + !this.showRetainingEdges + " || (edge.node.id !== 1 && !edge.node.isArtificial))\n" +
     407            "        && (" + !this.showRetainingEdges + " || (edge.node.id !== 1 && !edge.node.isSynthetic))\n" +
    408408            "        && (" + showHiddenData + " || (!edge.isHidden && !edge.node.isHidden));\n" +
    409409            "}\n";
  • trunk/Source/WebCore/inspector/front-end/HeapSnapshot.js

    r106779 r106905  
    567567    },
    568568
    569     get isArtificial()
    570     {
    571         return this._type() === this._snapshot._nodeArtificialType;
     569    get isSynthetic()
     570    {
     571        return this._type() === this._snapshot._nodeSyntheticType;
    572572    },
    573573
     
    712712        this._nodeTypes = meta.types[this._nodeTypeOffset];
    713713        this._nodeHiddenType = this._nodeTypes.indexOf("hidden");
    714         this._nodeArtificialType = this._nodeTypes.indexOf("artificial");
     714        this._nodeSyntheticType = this._nodeTypes.indexOf("synthetic");
    715715        var edgesMeta = meta.types[this._firstEdgeOffset];
    716716        this._edgeFieldsCount = edgesMeta.fields.length;
Note: See TracChangeset for help on using the changeset viewer.