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

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

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review Created 4 years, 2 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 97a57311f4d2ade90b9151252c48d852a8f57391..a72ddfeba07af1edddb8a7fea221adbb583d55b2 100644
--- a/tracing/tracing/ui/extras/about_tracing/record_controller.html
+++ b/tracing/tracing/ui/extras/about_tracing/record_controller.html
@@ -147,7 +147,7 @@ tr.exportTo('tr.ui.e.about_tracing', function() {
percentFull = Math.round(100 * parseFloat(percentFull));
var newText = 'Buffer usage: ' + percentFull + '%';
- if (Polymer.dom(bufferPercentFullDiv).textContent != newText)
+ if (Polymer.dom(bufferPercentFullDiv).textContent !== newText)
Polymer.dom(bufferPercentFullDiv).textContent = newText;
window.setTimeout(getBufferPercentFull, 500);
« no previous file with comments | « tracing/tracing/ui/base/ui.html ('k') | tracing/tracing/ui/extras/about_tracing/record_selection_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698