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

Unified Diff: tracing/tracing/ui/analysis/single_object_snapshot_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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tracing/tracing/ui/analysis/single_alert_sub_view.html ('k') | tracing/tracing/ui/base/chart_base.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
diff --git a/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html b/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
index 0cceb10aeca57cfbc20367bb25637fa333f52a59..cb1e0fc4b945d0875990d766325f07a2e9511912 100644
--- a/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
+++ b/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
@@ -83,7 +83,7 @@ Polymer({
snapshot.objectInstance.category, snapshot.objectInstance.typeName);
if (typeInfo) {
var customView = new typeInfo.constructor();
- this.appendChild(customView);
+ Polymer.dom(this).appendChild(customView);
customView.modelEvent = snapshot;
} else {
this.appendGenericAnalysis_(snapshot);
@@ -98,7 +98,7 @@ Polymer({
var titleEl = document.createElement('div');
titleEl.classList.add('title');
titleEl.appendChild(document.createTextNode('Snapshot of '));
- this.appendChild(titleEl);
+ Polymer.dom(this).appendChild(titleEl);
var instanceLinkEl = document.createElement('tr-ui-a-analysis-link');
instanceLinkEl.selection = new tr.model.EventSet(instance);
@@ -112,7 +112,7 @@ Polymer({
}));
var tableEl = document.createElement('table');
- this.appendChild(tableEl);
+ Polymer.dom(this).appendChild(tableEl);
var rowEl = document.createElement('tr');
tableEl.appendChild(rowEl);
« no previous file with comments | « tracing/tracing/ui/analysis/single_alert_sub_view.html ('k') | tracing/tracing/ui/base/chart_base.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698