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

Unified Diff: tracing/tracing/ui/extras/chrome/cc/layer_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
Index: tracing/tracing/ui/extras/chrome/cc/layer_view.html
diff --git a/tracing/tracing/ui/extras/chrome/cc/layer_view.html b/tracing/tracing/ui/extras/chrome/cc/layer_view.html
index ab2a403283b5e54181fcfe0a4dfc10d56c608ccb..267888ac8563028a05053790caede04721f54491 100644
--- a/tracing/tracing/ui/extras/chrome/cc/layer_view.html
+++ b/tracing/tracing/ui/extras/chrome/cc/layer_view.html
@@ -44,9 +44,9 @@ tr.exportTo('tr.ui.e.chrome.cc', function() {
this.dragBar_.target = this.analysisEl_;
- this.appendChild(this.layerTreeQuadStackView_);
- this.appendChild(this.dragBar_);
- this.appendChild(this.analysisEl_);
+ Polymer.dom(this).appendChild(this.layerTreeQuadStackView_);
+ Polymer.dom(this).appendChild(this.dragBar_);
+ Polymer.dom(this).appendChild(this.analysisEl_);
this.layerTreeQuadStackView_.addEventListener('selection-change',
function() {

Powered by Google App Engine
This is Rietveld 408576698