| OLD | NEW | 
|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be | 
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. | 
| 4 | 4 | 
| 5 import re | 5 import re | 
| 6 | 6 | 
| 7 from core import perf_benchmark | 7 from core import perf_benchmark | 
| 8 | 8 | 
| 9 from telemetry import benchmark | 9 from telemetry import benchmark | 
| 10 from telemetry.timeline import chrome_trace_category_filter | 10 from telemetry.timeline import chrome_trace_category_filter | 
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 236   of long running idle Gmail page """ | 236   of long running idle Gmail page """ | 
| 237   page_set = page_sets.LongRunningIdleGmailBackgroundPageSet | 237   page_set = page_sets.LongRunningIdleGmailBackgroundPageSet | 
| 238 | 238 | 
| 239   @classmethod | 239   @classmethod | 
| 240   def Name(cls): | 240   def Name(cls): | 
| 241     return 'memory.long_running_idle_gmail_background_tbmv2' | 241     return 'memory.long_running_idle_gmail_background_tbmv2' | 
| 242 | 242 | 
| 243   @classmethod | 243   @classmethod | 
| 244   def ShouldDisable(cls, possible_browser):  # http://crbug.com/616530 | 244   def ShouldDisable(cls, possible_browser):  # http://crbug.com/616530 | 
| 245     return cls.IsSvelte(possible_browser) | 245     return cls.IsSvelte(possible_browser) | 
| OLD | NEW | 
|---|