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

Unified Diff: tracing/tracing/ui/extras/about_tracing/record_controller.html

Issue 1923953003: [polymer] Switches .appendChild() to Polymer.dom()...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/about_tracing/record_controller.html
diff --git a/tracing/tracing/ui/extras/about_tracing/record_controller.html b/tracing/tracing/ui/extras/about_tracing/record_controller.html
index 2284b0fa3e7dd250a9b57d36bd72cba9e9d32129..e757c21c698f0ea60f62803dcabef15a54d3775d 100644
--- a/tracing/tracing/ui/extras/about_tracing/record_controller.html
+++ b/tracing/tracing/ui/extras/about_tracing/record_controller.html
@@ -76,14 +76,14 @@ tr.exportTo('tr.ui.e.about_tracing', function() {
progressDlg.userCanClose = false;
bufferPercentFullDiv = document.createElement('div');
- progressDlg.appendChild(bufferPercentFullDiv);
+ Polymer.dom(progressDlg).appendChild(bufferPercentFullDiv);
var stopButton = document.createElement('button');
stopButton.textContent = 'Stop';
progressDlg.clickStopButton = function() {
stopButton.click();
};
- progressDlg.appendChild(stopButton);
+ Polymer.dom(progressDlg).appendChild(stopButton);
var recordingOptions = {
categoryFilter: selectionDlg.categoryFilter(),

Powered by Google App Engine
This is Rietveld 408576698