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

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

Issue 1922193002: [polymer] Replaces this.appendChild with Polymer.dom(this).appendChild (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Created 4 years, 8 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/ui/analysis/analysis_sub_view.html"> 8 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
9 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html"> 9 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html">
10 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> 10 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 }); 52 });
53 }); 53 });
54 54
55 rows.push({ 55 rows.push({
56 name: 'Alerts', value: '', 56 name: 'Alerts', value: '',
57 isExpanded: true, subRows: eventSubRows 57 isExpanded: true, subRows: eventSubRows
58 }); 58 });
59 } 59 }
60 }.bind(this); 60 }.bind(this);
61 61
62 this.appendChild(realView); 62 Polymer.dom(this).appendChild(realView);
63 realView.setSelectionWithoutErrorChecks(selection); 63 realView.setSelectionWithoutErrorChecks(selection);
64 } 64 }
65 }); 65 });
66 </script> 66 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698