Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: content/test/gpu/gpu_tests/screenshot_sync.py

Issue 356833010: Delete all_page_actions, which is now empty. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/test/gpu/gpu_tests/maps.py ('k') | content/test/gpu/gpu_tests/webgl_conformance.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 5
6 import screenshot_sync_expectations as expectations 6 import screenshot_sync_expectations as expectations
7 7
8 from telemetry import benchmark 8 from telemetry import benchmark
9 from telemetry.core import util 9 from telemetry.core import util
10 from telemetry.page import page 10 from telemetry.page import page
11 from telemetry.page import page_set 11 from telemetry.page import page_set
12 from telemetry.page import page_test 12 from telemetry.page import page_test
13 # pylint: disable=W0401,W0614
14 from telemetry.page.actions.all_page_actions import *
15 13
16 data_path = os.path.join( 14 data_path = os.path.join(
17 util.GetChromiumSrcDir(), 'content', 'test', 'data', 'gpu') 15 util.GetChromiumSrcDir(), 'content', 'test', 'data', 'gpu')
18 16
19 @benchmark.Disabled('mac') 17 @benchmark.Disabled('mac')
20 class _ScreenshotSyncValidator(page_test.PageTest): 18 class _ScreenshotSyncValidator(page_test.PageTest):
21 def CustomizeBrowserOptions(self, options): 19 def CustomizeBrowserOptions(self, options):
22 options.AppendExtraBrowserArgs('--enable-gpu-benchmarking') 20 options.AppendExtraBrowserArgs('--enable-gpu-benchmarking')
23 21
24 def ValidatePage(self, page, tab, results): 22 def ValidatePage(self, page, tab, results):
(...skipping 25 matching lines...) Expand all
50 they were requested""" 48 they were requested"""
51 test = _ScreenshotSyncValidator 49 test = _ScreenshotSyncValidator
52 50
53 def CreateExpectations(self, page_set): 51 def CreateExpectations(self, page_set):
54 return expectations.ScreenshotSyncExpectations() 52 return expectations.ScreenshotSyncExpectations()
55 53
56 def CreatePageSet(self, options): 54 def CreatePageSet(self, options):
57 ps = page_set.PageSet(file_path=data_path, serving_dirs=['']) 55 ps = page_set.PageSet(file_path=data_path, serving_dirs=[''])
58 ps.AddPage(ScreenshotSyncPage(ps, ps.base_dir)) 56 ps.AddPage(ScreenshotSyncPage(ps, ps.base_dir))
59 return ps 57 return ps
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/maps.py ('k') | content/test/gpu/gpu_tests/webgl_conformance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698