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

Side by Side Diff: native_client_sdk/src/gonacl_appengine/gonacl.py

Issue 734073005: Making gonacl.com/cds2014 link to codelabs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import webapp2 4 import webapp2
5 5
6 application = webapp2.WSGIApplication([ 6 application = webapp2.WSGIApplication([
7 webapp2.Route('/', webapp2.RedirectHandler, defaults={ 7 webapp2.Route('/', webapp2.RedirectHandler, defaults={
8 '_uri': 'http://developer.chrome.com/native-client'}), 8 '_uri': 'http://developer.chrome.com/native-client'}),
9 webapp2.Route('/fire', webapp2.RedirectHandler, defaults={
10 '_uri': 'http://developer.chrome.com/native-client/cds2014'}),
9 ], debug=True) 11 ], debug=True)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698