Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: tracing/tracing/ui/analysis/alert_sub_view.html

Issue 2023283002: [polymer] Rewrite the analysis tab view (Closed) Base URL: git@github.com:zeptonaut/catapult.git@polymer10_rewrite_tab_view2
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2015 The Chromium Authors. All rights reserved. 3 Copyright (c) 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/tracing/base/base.html"> 8 <link rel="import" href="/tracing/base/base.html">
9 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
charliea (OOO until 10-5) 2016/06/01 15:29:41 found that this import line was missing when I wen
9 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> 10 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
10 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> 11 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
11 <link rel="import" href="/tracing/ui/base/table.html"> 12 <link rel="import" href="/tracing/ui/base/table.html">
12 <link rel="import" href="/tracing/ui/base/ui.html"> 13 <link rel="import" href="/tracing/ui/base/ui.html">
13 14
14 <dom-module id='tr-ui-a-alert-sub-view'> 15 <dom-module id='tr-ui-a-alert-sub-view'>
15 <template> 16 <template>
16 <style> 17 <style>
17 :host { 18 :host {
18 display: flex; 19 display: flex;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 this.$.table.rebuild(); 150 this.$.table.rebuild();
150 }, 151 },
151 152
152 get relatedEventsToHighlight() { 153 get relatedEventsToHighlight() {
153 if (!this.currentSelection_) 154 if (!this.currentSelection_)
154 return undefined; 155 return undefined;
155 return this.currentSelection_[0].associatedEvents; 156 return this.currentSelection_[0].associatedEvents;
156 } 157 }
157 }); 158 });
158 </script> 159 </script>
OLDNEW
« no previous file with comments | « no previous file | tracing/tracing/ui/analysis/analysis_view.html » ('j') | tracing/tracing/ui/analysis/analysis_view.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698