Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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> |
| OLD | NEW |