| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 from telemetry.story import expectations | 4 from telemetry.story import expectations |
| 5 | 5 |
| 6 | 6 |
| 7 class SystemHealthDesktopCommonExpectations(expectations.StoryExpectations): | 7 class SystemHealthDesktopCommonExpectations(expectations.StoryExpectations): |
| 8 def SetExpectations(self): | 8 def SetExpectations(self): |
| 9 self.DisableStory('browse:news:hackernews', | |
| 10 [expectations.ALL_WIN, expectations.ALL_MAC], | |
| 11 'crbug.com/676336') | |
| 12 self.DisableStory('browse:search:google', [expectations.ALL_WIN], | 9 self.DisableStory('browse:search:google', [expectations.ALL_WIN], |
| 13 'crbug.com/673775') | 10 'crbug.com/673775') |
| 14 self.DisableStory('browse:tools:maps', [expectations.ALL], | 11 self.DisableStory('browse:tools:maps', [expectations.ALL], |
| 15 'crbug.com/712694') | 12 'crbug.com/712694') |
| 16 self.DisableStory('browse:tools:earth', [expectations.ALL], | 13 self.DisableStory('browse:tools:earth', [expectations.ALL], |
| 17 'crbug.com/708590') | 14 'crbug.com/708590') |
| 18 self.DisableStory('load:games:miniclip', [expectations.ALL_MAC], | 15 self.DisableStory('load:games:miniclip', [expectations.ALL_MAC], |
| 19 'crbug.com/664661') | 16 'crbug.com/664661') |
| 20 self.DisableStory('play:media:google_play_music', [expectations.ALL], | 17 self.DisableStory('play:media:google_play_music', [expectations.ALL], |
| 21 'crbug.com/649392') | 18 'crbug.com/649392') |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 self.DisableStory('browse:chrome:newtab', | 218 self.DisableStory('browse:chrome:newtab', |
| 222 [expectations.ANDROID_WEBVIEW], | 219 [expectations.ANDROID_WEBVIEW], |
| 223 'Webview does not have NTP') | 220 'Webview does not have NTP') |
| 224 self.DisableStory('browse:social:pinterest_infinite_scroll', | 221 self.DisableStory('browse:social:pinterest_infinite_scroll', |
| 225 [expectations.ANDROID_WEBVIEW], 'crbug.com/728528') | 222 [expectations.ANDROID_WEBVIEW], 'crbug.com/728528') |
| 226 | 223 |
| 227 | 224 |
| 228 class SystemHealthWebviewStartupExpectations(expectations.StoryExpectations): | 225 class SystemHealthWebviewStartupExpectations(expectations.StoryExpectations): |
| 229 def SetExpectations(self): | 226 def SetExpectations(self): |
| 230 pass # Nothing is disabled at this time. | 227 pass # Nothing is disabled at this time. |
| OLD | NEW |