OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:presentationRecord
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelinePresentationModel.js
160
* @param {!WebInspector.TimelinePresentationModel.Record}
presentationRecord
163
_replaceWithCoalescedRecord: function(
presentationRecord
)
165
var record =
presentationRecord
.record();
166
var parent =
presentationRecord
._presentationParent;
170
coalescedRecord._presentationChildren.push(
presentationRecord
);
171
presentationRecord
._presentationParent = coalescedRecord;
172
if (
presentationRecord
.hasWarnings() ||
presentationRecord
.childHasWarnings())
176
parent._presentationChildren[parent._presentationChildren.indexOf(
presentationRecord
)] = coalescedRecord;
182
* @param {!WebInspector.TimelinePresentationModel.Record}
presentationRecord
[
all
...]
TimelineView.js
335
* @param {?WebInspector.TimelinePresentationModel.Record}
presentationRecord
337
_selectRecord: function(
presentationRecord
)
339
if (
presentationRecord
.coalesced()) {
341
this._innerSetSelectedRecord(
presentationRecord
);
343
var presentationChildren =
presentationRecord
.presentationChildren();
346
var idle =
presentationRecord
.endTime() -
presentationRecord
.startTime();
351
var title = this._uiUtils.titleForRecord(
presentationRecord
.record());
355
this._delegate.select(WebInspector.TimelineSelection.fromRecord(
presentationRecord
.record()));
380
* @param {?WebInspector.TimelinePresentationModel.Record}
presentationRecord
[
all
...]
Completed in 51 milliseconds