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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotCommon.js

Issue 2626173002: DevTools: Extract HeapSnapshotCommon.js into HeapSnapshotModel module (Closed)
Patch Set: add module.json for modules Created 3 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
Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotCommon.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotCommon.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotCommon.js
deleted file mode 100644
index 23c61315f9c5de600edcab3cc0e37b68d60f87d1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotCommon.js
+++ /dev/null
@@ -1,417 +0,0 @@
-/*
- * Copyright (C) 2014 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-self['Profiler'] = self['Profiler'] || {};
-
-Profiler.HeapSnapshotProgressEvent = {
- Update: 'ProgressUpdate',
- BrokenSnapshot: 'BrokenSnapshot'
-};
-
-Profiler.HeapSnapshotCommon = {};
-
-Profiler.HeapSnapshotCommon.baseSystemDistance = 100000000;
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.AllocationNodeCallers = class {
- /**
- * @param {!Array.<!Profiler.HeapSnapshotCommon.SerializedAllocationNode>} nodesWithSingleCaller
- * @param {!Array.<!Profiler.HeapSnapshotCommon.SerializedAllocationNode>} branchingCallers
- */
- constructor(nodesWithSingleCaller, branchingCallers) {
- /** @type {!Array.<!Profiler.HeapSnapshotCommon.SerializedAllocationNode>} */
- this.nodesWithSingleCaller = nodesWithSingleCaller;
- /** @type {!Array.<!Profiler.HeapSnapshotCommon.SerializedAllocationNode>} */
- this.branchingCallers = branchingCallers;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.SerializedAllocationNode = class {
- /**
- * @param {number} nodeId
- * @param {string} functionName
- * @param {string} scriptName
- * @param {number} scriptId
- * @param {number} line
- * @param {number} column
- * @param {number} count
- * @param {number} size
- * @param {number} liveCount
- * @param {number} liveSize
- * @param {boolean} hasChildren
- */
- constructor(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren) {
- /** @type {number} */
- this.id = nodeId;
- /** @type {string} */
- this.name = functionName;
- /** @type {string} */
- this.scriptName = scriptName;
- /** @type {number} */
- this.scriptId = scriptId;
- /** @type {number} */
- this.line = line;
- /** @type {number} */
- this.column = column;
- /** @type {number} */
- this.count = count;
- /** @type {number} */
- this.size = size;
- /** @type {number} */
- this.liveCount = liveCount;
- /** @type {number} */
- this.liveSize = liveSize;
- /** @type {boolean} */
- this.hasChildren = hasChildren;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.AllocationStackFrame = class {
- /**
- * @param {string} functionName
- * @param {string} scriptName
- * @param {number} scriptId
- * @param {number} line
- * @param {number} column
- */
- constructor(functionName, scriptName, scriptId, line, column) {
- /** @type {string} */
- this.functionName = functionName;
- /** @type {string} */
- this.scriptName = scriptName;
- /** @type {number} */
- this.scriptId = scriptId;
- /** @type {number} */
- this.line = line;
- /** @type {number} */
- this.column = column;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Node = class {
- /**
- * @param {number} id
- * @param {string} name
- * @param {number} distance
- * @param {number} nodeIndex
- * @param {number} retainedSize
- * @param {number} selfSize
- * @param {string} type
- */
- constructor(id, name, distance, nodeIndex, retainedSize, selfSize, type) {
- this.id = id;
- this.name = name;
- this.distance = distance;
- this.nodeIndex = nodeIndex;
- this.retainedSize = retainedSize;
- this.selfSize = selfSize;
- this.type = type;
-
- this.canBeQueried = false;
- this.detachedDOMTreeNode = false;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Edge = class {
- /**
- * @param {string} name
- * @param {!Profiler.HeapSnapshotCommon.Node} node
- * @param {string} type
- * @param {number} edgeIndex
- */
- constructor(name, node, type, edgeIndex) {
- this.name = name;
- this.node = node;
- this.type = type;
- this.edgeIndex = edgeIndex;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Aggregate = class {
- constructor() {
- /** @type {number} */
- this.count;
- /** @type {number} */
- this.distance;
- /** @type {number} */
- this.self;
- /** @type {number} */
- this.maxRet;
- /** @type {number} */
- this.type;
- /** @type {string} */
- this.name;
- /** @type {!Array.<number>} */
- this.idxs;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.AggregateForDiff = class {
- constructor() {
- /** @type {!Array.<number>} */
- this.indexes = [];
- /** @type {!Array.<string>} */
- this.ids = [];
- /** @type {!Array.<number>} */
- this.selfSizes = [];
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Diff = class {
- constructor() {
- /** @type {number} */
- this.addedCount = 0;
- /** @type {number} */
- this.removedCount = 0;
- /** @type {number} */
- this.addedSize = 0;
- /** @type {number} */
- this.removedSize = 0;
- /** @type {!Array.<number>} */
- this.deletedIndexes = [];
- /** @type {!Array.<number>} */
- this.addedIndexes = [];
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.DiffForClass = class {
- constructor() {
- /** @type {number} */
- this.addedCount;
- /** @type {number} */
- this.removedCount;
- /** @type {number} */
- this.addedSize;
- /** @type {number} */
- this.removedSize;
- /** @type {!Array.<number>} */
- this.deletedIndexes;
- /** @type {!Array.<number>} */
- this.addedIndexes;
-
- /** @type {number} */
- this.countDelta;
- /** @type {number} */
- this.sizeDelta;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.ComparatorConfig = class {
- constructor() {
- /** @type {string} */
- this.fieldName1;
- /** @type {boolean} */
- this.ascending1;
- /** @type {string} */
- this.fieldName2;
- /** @type {boolean} */
- this.ascending2;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.WorkerCommand = class {
- constructor() {
- /** @type {number} */
- this.callId;
- /** @type {string} */
- this.disposition;
- /** @type {number} */
- this.objectId;
- /** @type {number} */
- this.newObjectId;
- /** @type {string} */
- this.methodName;
- /** @type {!Array.<*>} */
- this.methodArguments;
- /** @type {string} */
- this.source;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.ItemsRange = class {
- /**
- * @param {number} startPosition
- * @param {number} endPosition
- * @param {number} totalLength
- * @param {!Array.<*>} items
- */
- constructor(startPosition, endPosition, totalLength, items) {
- /** @type {number} */
- this.startPosition = startPosition;
- /** @type {number} */
- this.endPosition = endPosition;
- /** @type {number} */
- this.totalLength = totalLength;
- /** @type {!Array.<*>} */
- this.items = items;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.StaticData = class {
- /**
- * @param {number} nodeCount
- * @param {number} rootNodeIndex
- * @param {number} totalSize
- * @param {number} maxJSObjectId
- */
- constructor(nodeCount, rootNodeIndex, totalSize, maxJSObjectId) {
- /** @type {number} */
- this.nodeCount = nodeCount;
- /** @type {number} */
- this.rootNodeIndex = rootNodeIndex;
- /** @type {number} */
- this.totalSize = totalSize;
- /** @type {number} */
- this.maxJSObjectId = maxJSObjectId;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Statistics = class {
- constructor() {
- /** @type {number} */
- this.total;
- /** @type {number} */
- this.v8heap;
- /** @type {number} */
- this.native;
- /** @type {number} */
- this.code;
- /** @type {number} */
- this.jsArrays;
- /** @type {number} */
- this.strings;
- /** @type {number} */
- this.system;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.NodeFilter = class {
- /**
- * @param {number=} minNodeId
- * @param {number=} maxNodeId
- */
- constructor(minNodeId, maxNodeId) {
- /** @type {number|undefined} */
- this.minNodeId = minNodeId;
- /** @type {number|undefined} */
- this.maxNodeId = maxNodeId;
- /** @type {number|undefined} */
- this.allocationNodeId;
- }
-
- /**
- * @param {!Profiler.HeapSnapshotCommon.NodeFilter} o
- * @return {boolean}
- */
- equals(o) {
- return this.minNodeId === o.minNodeId && this.maxNodeId === o.maxNodeId &&
- this.allocationNodeId === o.allocationNodeId;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.SearchConfig = class {
- /**
- * @param {string} query
- * @param {boolean} caseSensitive
- * @param {boolean} isRegex
- * @param {boolean} shouldJump
- * @param {boolean} jumpBackward
- */
- constructor(query, caseSensitive, isRegex, shouldJump, jumpBackward) {
- this.query = query;
- this.caseSensitive = caseSensitive;
- this.isRegex = isRegex;
- this.shouldJump = shouldJump;
- this.jumpBackward = jumpBackward;
- }
-};
-
-/**
- * @unrestricted
- */
-Profiler.HeapSnapshotCommon.Samples = class {
- /**
- * @param {!Array.<number>} timestamps
- * @param {!Array.<number>} lastAssignedIds
- * @param {!Array.<number>} sizes
- */
- constructor(timestamps, lastAssignedIds, sizes) {
- this.timestamps = timestamps;
- this.lastAssignedIds = lastAssignedIds;
- this.sizes = sizes;
- }
-};

Powered by Google App Engine
This is Rietveld 408576698