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

Side by Side Diff: chrome/test/functional/ispy/server/app.py

Issue 106523003: [I-Spy] Add support for rebaselining expectations from the web UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing dom.py Created 6 years, 11 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 os
6 import sys
5 import webapp2 7 import webapp2
6 8
9 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
7 import debug_view_handler 10 import debug_view_handler
8 import image_handler 11 import image_handler
9 import main_view_handler 12 import main_view_handler
13 import rebaseline_handler
10 import update_mask_handler 14 import update_mask_handler
11 15
12 16
13 application = webapp2.WSGIApplication( 17 application = webapp2.WSGIApplication(
14 [('/update_mask', update_mask_handler.UpdateMaskHandler), 18 [('/update_mask', update_mask_handler.UpdateMaskHandler),
19 ('/rebaseline', rebaseline_handler.RebaselineHandler),
15 ('/debug_view', debug_view_handler.DebugViewHandler), 20 ('/debug_view', debug_view_handler.DebugViewHandler),
16 ('/image', image_handler.ImageHandler), 21 ('/image', image_handler.ImageHandler),
17 ('/', main_view_handler.MainViewHandler)], debug=True) 22 ('/', main_view_handler.MainViewHandler)], debug=True)
OLDNEW
« no previous file with comments | « chrome/test/functional/ispy/common/ispy_utils.py ('k') | chrome/test/functional/ispy/server/debug_view_handler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698