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

Side by Side Diff: chrome/common/extensions/docs/server2/appengine_wrappers.py

Issue 10828042: Extensions Docs Server: Integration testing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: refactor Created 8 years, 4 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
(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
5 try:
6 import google.appengine.ext.webapp as webapp
7 import google.appengine.api.memcache as memcache
8 import google.appengine.api.urlfetch as urlfetch
9 except ImportError:
10 memcache = None
11 urlfetch = None
not at google - send to devlin 2012/07/30 23:00:44 it's kinda hacky, but you could avoid that awkward
cduvall 2012/07/30 23:38:18 Done.
12
13 class webapp(object):
14 class RequestHandler(object):
15 def __init__(self, request, response):
16 self.request = request
17 self.response = response
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698