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

Unified Diff: go/src/infra/gae/libs/gae/context.go

Issue 1222903002: Refactor current GAE abstraction library to be free of the SDK* (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: more fixes Created 5 years, 5 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: go/src/infra/gae/libs/gae/context.go
diff --git a/go/src/infra/gae/libs/wrapper/context.go b/go/src/infra/gae/libs/gae/context.go
similarity index 67%
rename from go/src/infra/gae/libs/wrapper/context.go
rename to go/src/infra/gae/libs/gae/context.go
index 8adec69df84c6887010cf6adb1607d0947216bc4..f8a458a281367f93dd24a9c66529869b7e62c1b6 100644
--- a/go/src/infra/gae/libs/wrapper/context.go
+++ b/go/src/infra/gae/libs/gae/context.go
@@ -2,17 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package wrapper
+package gae
type key int
var (
globalInfoKey key
- datastoreKey key = 1
- memcacheKey key = 2
- taskQueueKey key = 3
+ rawDatastoreKey key = 1
+ memcacheKey key = 2
+ taskQueueKey key = 3
+
+ datastoreKey key = 4
- timeNowKey key = 4
mathRandKey key = 5
)

Powered by Google App Engine
This is Rietveld 408576698