blob: b18dd91e8ef52a578e90b6298703ca9b551ee54e [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="/ui/analysis/analysis_sub_view.html">
<link rel="import" href="/ui/analysis/single_event_sub_view.html">
<link rel="import" href="/ui/analysis/related_events.html">
<polymer-element name="tr-ui-a-single-thread-slice-sub-view"
extends="tr-ui-a-sub-view">
<template>
<style>
:host {
display: flex;
flex-direction: row;
}
#events {
display: flex;
flex-direction: column;
}
</style>
<tr-ui-a-single-event-sub-view id="content"></tr-ui-a-single-event-sub-view>
<div id="events">
<tr-ui-a-related-events id="relatedEvents">
</tr-ui-a-related-events>
</div>
</template>
<script>
'use strict';
Polymer({
get selection() {
return this.$.content.selection;
},
set selection(selection) {
this.$.content.selection = selection;
this.$.relatedEvents.setRelatedEvents(selection);
if (this.$.relatedEvents.hasRelatedEvents())
this.$.relatedEvents.style.display = '';
else
this.$.relatedEvents.style.display = 'none';
}
});
</script>
</polymer-element>