| Index: tracing/tracing/ui/extras/about_tracing/profiling_view.html
 | 
| diff --git a/tracing/tracing/ui/extras/about_tracing/profiling_view.html b/tracing/tracing/ui/extras/about_tracing/profiling_view.html
 | 
| index 801f2b5c4b31279cafdbd1e74e2f880e67095404..509ec0c74b713edf7ec4ae5dbbe7a05cf5d8d73b 100644
 | 
| --- a/tracing/tracing/ui/extras/about_tracing/profiling_view.html
 | 
| +++ b/tracing/tracing/ui/extras/about_tracing/profiling_view.html
 | 
| @@ -78,8 +78,8 @@ tr.exportTo('tr.ui.e.about_tracing', function() {
 | 
|      __proto__: HTMLUnknownElement.prototype,
 | 
|  
 | 
|      decorate: function(tracingControllerClient) {
 | 
| -      Polymer.dom(this).appendChild(tr.ui.b.instantiateTemplate('#profiling-view-template',
 | 
| -          THIS_DOC));
 | 
| +      Polymer.dom(this).appendChild(
 | 
| +          tr.ui.b.instantiateTemplate('#profiling-view-template', THIS_DOC));
 | 
|  
 | 
|        this.timelineView_ = this.querySelector('tr-ui-timeline-view');
 | 
|        this.infoBarGroup_ = this.querySelector('tr-ui-b-info-bar-group');
 | 
| @@ -93,7 +93,7 @@ tr.exportTo('tr.ui.e.about_tracing', function() {
 | 
|  
 | 
|        var buttons = this.querySelector('x-timeline-view-buttons');
 | 
|        buttons.parentElement.removeChild(buttons);
 | 
| -      this.timelineView_.leftControls.appendChild(buttons);
 | 
| +      Polymer.dom(this.timelineView_.leftControls).appendChild(buttons);
 | 
|        this.initButtons_();
 | 
|  
 | 
|        this.timelineView_.hotkeyController.addHotKey(new tr.ui.b.HotKey({
 | 
| 
 |