| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import os | 4 import os |
| 5 import re | 5 import re |
| 6 | 6 |
| 7 from core import path_util | 7 from core import path_util |
| 8 from core import perf_benchmark | 8 from core import perf_benchmark |
| 9 from page_sets import google_pages | 9 from page_sets import google_pages |
| 10 | 10 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 cloud_storage_bucket=story.PARTNER_BUCKET) | 291 cloud_storage_bucket=story.PARTNER_BUCKET) |
| 292 story_set.AddStory(google_pages.AdwordCampaignDesktopPage(story_set)) | 292 story_set.AddStory(google_pages.AdwordCampaignDesktopPage(story_set)) |
| 293 return story_set | 293 return story_set |
| 294 | 294 |
| 295 @classmethod | 295 @classmethod |
| 296 def Name(cls): | 296 def Name(cls): |
| 297 return 'v8.google' | 297 return 'v8.google' |
| 298 | 298 |
| 299 @classmethod | 299 @classmethod |
| 300 def ShouldDisable(cls, possible_browser): | 300 def ShouldDisable(cls, possible_browser): |
| 301 return cls.IsSvelte(possible_browser) # http://crbug.com/596556 | 301 if cls.IsSvelte(possible_browser): # http://crbug.com/596556 |
| 302 return True |
| 303 # http://crbug.com/623576 |
| 304 if (possible_browser.platform.GetDeviceTypeName() == 'Nexus 5' or |
| 305 possible_browser.platform.GetDeviceTypeName() == 'Nexus 7'): |
| 306 return True |
| 307 return False |
| 302 | 308 |
| 303 @classmethod | 309 @classmethod |
| 304 def ShouldTearDownStateAfterEachStoryRun(cls): | 310 def ShouldTearDownStateAfterEachStoryRun(cls): |
| 305 return True | 311 return True |
| OLD | NEW |