| 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 tracing_category_filter | 10 from telemetry.timeline import tracing_category_filter |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 156 |
| 157 @classmethod | 157 @classmethod |
| 158 def Name(cls): | 158 def Name(cls): |
| 159 return 'memory.long_running_idle_gmail_tbmv2' | 159 return 'memory.long_running_idle_gmail_tbmv2' |
| 160 | 160 |
| 161 @classmethod | 161 @classmethod |
| 162 def ShouldDisable(cls, possible_browser): | 162 def ShouldDisable(cls, possible_browser): |
| 163 return cls.IsSvelte(possible_browser) # http://crbug.com/611167 | 163 return cls.IsSvelte(possible_browser) # http://crbug.com/611167 |
| 164 | 164 |
| 165 | 165 |
| 166 @benchmark.Disabled('android-webview') # http://crbug.com/612210 |
| 166 class MemoryLongRunningIdleGmailBackground(_MemoryV8Benchmark): | 167 class MemoryLongRunningIdleGmailBackground(_MemoryV8Benchmark): |
| 167 """Use (recorded) real world web sites and measure memory consumption | 168 """Use (recorded) real world web sites and measure memory consumption |
| 168 of long running idle Gmail page """ | 169 of long running idle Gmail page """ |
| 169 page_set = page_sets.LongRunningIdleGmailBackgroundPageSet | 170 page_set = page_sets.LongRunningIdleGmailBackgroundPageSet |
| 170 | 171 |
| 171 @classmethod | 172 @classmethod |
| 172 def Name(cls): | 173 def Name(cls): |
| 173 return 'memory.long_running_idle_gmail_background_tbmv2' | 174 return 'memory.long_running_idle_gmail_background_tbmv2' |
| OLD | NEW |