Index: tracing/tracing/model/helpers/android_surface_flinger.html |
diff --git a/tracing/tracing/model/helpers/android_surface_flinger.html b/tracing/tracing/model/helpers/android_surface_flinger.html |
index 3cef85bd02f8ced5c31c54df732cdb9c85fa8961..2a71afec94bbf2792c92789148f92a244410b158 100644 |
--- a/tracing/tracing/model/helpers/android_surface_flinger.html |
+++ b/tracing/tracing/model/helpers/android_surface_flinger.html |
@@ -30,7 +30,7 @@ tr.exportTo('tr.model.helpers', function() { |
if (!vsync) |
vsync = process.counters[VSYNC_FALLBACK_NAME]; |
- if (vsync && vsync.numSeries == 1 && vsync.numSamples > 1) |
+ if (vsync && vsync.numSeries === 1 && vsync.numSamples > 1) |
return vsync.series[0].timestamps; |
return undefined; |
} |
@@ -53,7 +53,7 @@ tr.exportTo('tr.model.helpers', function() { |
this.deadlineDelayMs_ = |
this.appVsyncTimestamps_ !== this.sfVsyncTimestamps_ ? |
5 : TIMESTAMP_FUDGE_MS; |
- }; |
+ } |
AndroidSurfaceFlinger.createForProcessIfPossible = function(process) { |
var mainThread = process.getThread(process.pid); |
@@ -65,7 +65,7 @@ tr.exportTo('tr.model.helpers', function() { |
// older versions - another thread is named SurfaceFlinger |
var primaryThreads = process.findAllThreadsNamed('SurfaceFlinger'); |
- if (primaryThreads.length == 1) |
+ if (primaryThreads.length === 1) |
return new AndroidSurfaceFlinger(process, primaryThreads[0]); |
return undefined; |
}; |