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

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

Issue 104793008: Revert 240226 "[I-Spy] Add support for rebaselining expectations..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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
7 import webapp2 5 import webapp2
8 6
9 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
10 import debug_view_handler 7 import debug_view_handler
11 import image_handler 8 import image_handler
12 import main_view_handler 9 import main_view_handler
13 import rebaseline_handler
14 import update_mask_handler 10 import update_mask_handler
15 11
16 12
17 application = webapp2.WSGIApplication( 13 application = webapp2.WSGIApplication(
18 [('/update_mask', update_mask_handler.UpdateMaskHandler), 14 [('/update_mask', update_mask_handler.UpdateMaskHandler),
19 ('/rebaseline', rebaseline_handler.RebaselineHandler),
20 ('/debug_view', debug_view_handler.DebugViewHandler), 15 ('/debug_view', debug_view_handler.DebugViewHandler),
21 ('/image', image_handler.ImageHandler), 16 ('/image', image_handler.ImageHandler),
22 ('/', main_view_handler.MainViewHandler)], debug=True) 17 ('/', main_view_handler.MainViewHandler)], debug=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698