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

Unified Diff: tracing/tracing/extras/importer/linux_perf/mali_parser.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/extras/importer/linux_perf/mali_parser.html
diff --git a/tracing/tracing/extras/importer/linux_perf/mali_parser.html b/tracing/tracing/extras/importer/linux_perf/mali_parser.html
index 0516805f740ee9528b403f66b2874d4f34497c98..7cba16fcf6d33b4c7808b089bcc1af99afe86099 100644
--- a/tracing/tracing/extras/importer/linux_perf/mali_parser.html
+++ b/tracing/tracing/extras/importer/linux_perf/mali_parser.html
@@ -278,9 +278,9 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
* gles/src/texture/mali_gles_texture_slave.c@1505:
*/
maliDDKEvent: function(eventName, cpuNumber, pid, ts, eventBase) {
- if (this.lineRE == null) {
+ if (this.lineRE === null) {
this.lineRE = this.autoDetectLineRE(eventBase.details);
- if (this.lineRE == null)
+ if (this.lineRE === null)
return false;
}
var maliEvent = this.lineRE.exec(eventBase.details);

Powered by Google App Engine
This is Rietveld 408576698