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

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

Issue 2160983005: [polymer] Fix bad merge in table.html (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/base/table.html
diff --git a/tracing/tracing/ui/base/table.html b/tracing/tracing/ui/base/table.html
index 64693c27701db597d6a0b9082eec561e4abe5f4e..d8004588ddc970b778969af4453fc5320f61987b 100644
--- a/tracing/tracing/ui/base/table.html
+++ b/tracing/tracing/ui/base/table.html
@@ -1172,10 +1172,10 @@ tr.exportTo('tr.ui.b', function() {
var cell = this.headerCells_[index];
cell.selected = true;
}
- var e = new tr.b.Event('selected-column-changed');
- e.column = column;
- e.selected = column !== undefined;
- cell.dispatchEvent(e);
+ var event = {column: column, selected: column !== undefined};
+ this.onSelectedColumnChanged_(event);
+ tr.b.dispatchSimpleEvent(
+ this, 'selected-column-changed', true, false, event);
},
get selectedTableRow() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698