blob: f8d850537b0c65b220869bce1efea44906dae6cb [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2014 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.
-->
<link rel="import" href="/base/guid.html">
<link rel="import" href="/model/event_set.html">
<link rel="import" href="/model/selectable_item.html">
<link rel="import" href="/model/selection_state.html">
<script>
'use strict';
/**
* @fileoverview Provides the Event class.
*/
tr.exportTo('tr.model', function() {
var SelectableItem = tr.model.SelectableItem;
var SelectionState = tr.model.SelectionState;
/**
* An Event is the base type for any non-container, selectable piece
* of data in the trace model.
*
* @constructor
* @extends {SelectableItem}
*/
function Event() {
SelectableItem.call(this, this /* modelItem */);
this.guid_ = tr.b.GUID.allocate();
this.selectionState = SelectionState.NONE;
this.associatedAlerts = new tr.model.EventSet();
this.info = undefined;
}
Event.prototype = {
__proto__: SelectableItem.prototype,
get guid() {
return this.guid_;
}
};
return {
Event: Event
};
});
</script>