blob: ffbb3a6fc6b6100f73039e6fdaf26632942a9350 [file] [log] [blame]
<!DOCTYPE html>
<!--
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.
-->
<link rel="import" href="/core/analysis/analysis_sub_view.html">
<link rel="import" href="/core/analysis/multi_event_sub_view.html">
<polymer-element name="tr-c-a-multi-thread-time-slice-sub-view"
extends="tr-c-a-sub-view">
<template>
<style>
:host {
display: flex;
}
#content {
flex: 1 1 auto;
}
</style>
<tr-c-a-multi-event-sub-view id="content"></tr-c-a-multi-event-sub-view>
</template>
<script>
'use strict';
Polymer({
ready: function() {
this.$.content.eventsHaveSubRows = false;
},
get selection() {
return this.$.content.selection;
},
set selection(selection) {
this.$.content.setSelectionWithoutErrorChecks(selection);
}
});
</script>
</polymer-element>