| Index: tools/profviz/composer.js | 
| diff --git a/tools/profviz/composer.js b/tools/profviz/composer.js | 
| index 44dd7639de84b327331082696a2f2da5822660ae..0c9437ff5416d7780f8653faf9c1871ee8e0d6e9 100644 | 
| --- a/tools/profviz/composer.js | 
| +++ b/tools/profviz/composer.js | 
| @@ -497,6 +497,8 @@ function PlotScriptComposer(kResX, kResY, error_output) { | 
| } | 
|  | 
| // Label the longest pauses. | 
| +    execution_pauses = | 
| +        RestrictRangesTo(execution_pauses, range_start, range_end); | 
| execution_pauses.sort( | 
| function(a, b) { return b.duration() - a.duration(); }); | 
|  | 
|  |