1<!DOCTYPE html> 2<!-- 3Copyright (c) 2013 The Chromium Authors. All rights reserved. 4Use of this source code is governed by a BSD-style license that can be 5found in the LICENSE file. 6--> 7 8<link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> 9<link rel="import" href="/tracing/ui/analysis/multi_event_sub_view.html"> 10 11<polymer-element name="tr-ui-a-multi-flow-event-sub-view" 12 extends="tr-ui-a-sub-view"> 13 <template> 14 <style> 15 :host { 16 display: flex; 17 } 18 </style> 19 <tr-ui-a-multi-event-sub-view id="content"></tr-ui-a-multi-event-sub-view> 20 </template> 21 22 <script> 23 'use strict'; 24 25 Polymer({ 26 ready: function() { 27 this.$.content.eventsHaveDuration = false; 28 this.$.content.eventsHaveSubRows = false; 29 }, 30 31 set selection(selection) { 32 this.$.content.selection = selection; 33 }, 34 35 get selection() { 36 return this.$.content.selection; 37 } 38 }); 39 </script> 40</polymer-element> 41