summaryrefslogtreecommitdiff
path: root/chromium/third_party/trace-viewer/src/tracing/trace_model/sample.js
blob: dd3bffd767f640ba12264bf4b149ff318905cb77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// 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';

base.require('tracing.trace_model.timed_event');

/**
 * @fileoverview Provides the Sample class.
 */
base.exportTo('tracing.trace_model', function() {
  /**
   * A Sample represents a sample taken at an instant in time
   * plus parameters associated with that sample.
   *
   * @constructor
   */
  function Sample(category, title, colorId, start, args) {
    tracing.trace_model.TimedEvent.call(this, start);

    this.category = category || '';
    this.title = title;
    this.colorId = colorId;
    this.args = args;
  }

  Sample.prototype = {
    __proto__: tracing.trace_model.TimedEvent.prototype
  };

  return {
    Sample: Sample
  };
});