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

Unified Diff: tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.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
« no previous file with comments | « tracing/tracing/extras/chrome/cc/util.html ('k') | tracing/tracing/extras/chrome/gpu/gpu_async_slice.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
diff --git a/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html b/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
index ba1ccf50b6a67ce15fc82f7aec293e80b33b945c..ee542f12e0c0c8a317013a8785d44436b104ca75 100644
--- a/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
+++ b/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
@@ -165,7 +165,7 @@ tr.exportTo('tr.e.chrome', function() {
var userFriendlyCategory =
USER_FRIENDLY_CATEGORY_FOR_TITLE.get(event.title);
if (userFriendlyCategory) {
- if (userFriendlyCategory == SAME_AS_PARENT) {
+ if (userFriendlyCategory === SAME_AS_PARENT) {
if (event.parentSlice)
return ChromeUserFriendlyCategoryDriver.fromEvent(event.parentSlice);
} else {
« no previous file with comments | « tracing/tracing/extras/chrome/cc/util.html ('k') | tracing/tracing/extras/chrome/gpu/gpu_async_slice.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698