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

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

Issue 12252020: Add a telemetry-based gpu_tests folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « content/test/gpu/gpu_tests/bootstrap_deps ('k') | content/test/gpu/page_sets/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 from telemetry.page import page_test
5
6 class PixelTestFailure(Exception):
7 pass
8
9 class PixelTest(page_test.PageTest):
10 def __init__(self):
11 super(PixelTest, self).__init__('ValidatePage')
12
13 def ValidatePage(self, page, tab, results):
14 # TODO(bajones): Grab screenshot, compare to reference.
15 # page.reference_image
16 pass
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/bootstrap_deps ('k') | content/test/gpu/page_sets/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698