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

Unified Diff: appengine/chromium_cq_status/handlers/patch_timeline.py

Issue 2056663002: Removed timeline code (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: appengine/chromium_cq_status/handlers/patch_timeline.py
diff --git a/appengine/chromium_cq_status/handlers/patch_timeline.py b/appengine/chromium_cq_status/handlers/patch_timeline.py
deleted file mode 100644
index b96e23be100cc9bfba42f9f2ada42a57320b94d6..0000000000000000000000000000000000000000
--- a/appengine/chromium_cq_status/handlers/patch_timeline.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import webapp2
-import cgi
-
-class PatchTimeline(webapp2.RequestHandler): # pragma: no cover
- def get(self, issue, patchset): # pylint: disable=W0221
- self.response.write(open('templates/trace_viewer.html').read() % {
- 'issue': cgi.escape(issue, quote=True),
- 'patchset': cgi.escape(patchset, quote=True),
- })

Powered by Google App Engine
This is Rietveld 408576698