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

Unified Diff: tracing/tracing/ui/base/tab_view.html

Issue 1914243003: Replace instances of shadowRoot with root. (Closed) Base URL: https://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/base/resize_sensor.html ('k') | tracing/tracing/ui/timeline_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/base/tab_view.html
diff --git a/tracing/tracing/ui/base/tab_view.html b/tracing/tracing/ui/base/tab_view.html
index 48667a7075fe3f9ff3d2605f0932a1a7d032b6bc..94f8b597865d4d18561c7a2740182fd35b624396 100644
--- a/tracing/tracing/ui/base/tab_view.html
+++ b/tracing/tracing/ui/base/tab_view.html
@@ -196,13 +196,13 @@ window.TracingAnalysisTabView = Polymer({
},
get tabsHidden() {
- var ts = this.shadowRoot.querySelector('tab-strip');
+ var ts = this.root.querySelector('tab-strip');
return ts.hasAttribute('tabs-hidden');
},
set tabsHidden(tabsHidden) {
tabsHidden = !!tabsHidden;
- var ts = this.shadowRoot.querySelector('tab-strip');
+ var ts = this.root.querySelector('tab-strip');
if (tabsHidden)
ts.setAttribute('tabs-hidden', true);
else
« no previous file with comments | « tracing/tracing/ui/base/resize_sensor.html ('k') | tracing/tracing/ui/timeline_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698