blob: 6567eff438da88c41c6a48d03ba4e3a97b23a765 [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
/**
* @fileoverview Provides the Sample class.
*/
base.exportTo('tracing.model', function() {
/**
* A Sample represents a sample taken at an instant in time
* plus parameters associated with that sample.
*
* NOTE: The Sample class implements the same interface as
* Slice. These must be kept in sync.
*
* All time units are stored in milliseconds.
* @constructor
*/
function Sample(category, title, colorId, ts, args) {
this.category = category || '';
this.title = title;
this.colorId = colorId;
this.start = ts;
this.args = args;
}
Sample.prototype = {
selected: false,
duration: 0,
get end() {
return this.start;
}
};
return {
Sample: Sample
};
});