| Index: tools/perf/page_sets/blink_memory_mobile.py
 | 
| diff --git a/tools/perf/page_sets/blink_memory_mobile.py b/tools/perf/page_sets/blink_memory_mobile.py
 | 
| index 40b5f134886c79490da62c0fdd3e8fdc1c01ea0c..52234ac13e411052946b37f7af777c1d176b02f6 100644
 | 
| --- a/tools/perf/page_sets/blink_memory_mobile.py
 | 
| +++ b/tools/perf/page_sets/blink_memory_mobile.py
 | 
| @@ -25,16 +25,17 @@ class BlinkMemoryMobilePage(page_module.Page):
 | 
|    def _DumpMemory(self, action_runner, phase):
 | 
|      with action_runner.CreateInteraction(phase):
 | 
|        action_runner.Wait(DUMP_WAIT_TIME)
 | 
| -      action_runner.ForceGarbageCollection()
 | 
| -      action_runner.SimulateMemoryPressureNotification('critical')
 | 
| -      action_runner.Wait(DUMP_WAIT_TIME)
 | 
| +      #action_runner.ForceGarbageCollection()
 | 
| +      #action_runner.SimulateMemoryPressureNotification('critical')
 | 
| +      #action_runner.Wait(DUMP_WAIT_TIME)
 | 
|        if not action_runner.tab.browser.DumpMemory():
 | 
|          logging.error('Unable to get a memory dump for %s.', self.name)
 | 
|  
 | 
|    def RunPageInteractions(self, action_runner):
 | 
|      action_runner.ScrollPage()
 | 
|      self._DumpMemory(action_runner, 'scrolled')
 | 
| -
 | 
| +    action_runner.Wait(DUMP_WAIT_TIME)
 | 
| +    self._DumpMemory(action_runner, 'scrolled2')
 | 
|  
 | 
|  class TheVergePage(BlinkMemoryMobilePage):
 | 
|    COMMENT_LINK_SELECTOR = '.show_comments_link'
 | 
| 
 |