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

Unified Diff: service/memcache/context.go

Issue 2302743002: Interface update, per-method Contexts. (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: service/memcache/context.go
diff --git a/service/memcache/context.go b/service/memcache/context.go
index 26afee87c327ba79ca28d7559c36012846d306ea..7e9cb724a44b42e67db7023c3ada04a40b90a85e 100644
--- a/service/memcache/context.go
+++ b/service/memcache/context.go
@@ -33,8 +33,8 @@ func getUnfiltered(c context.Context) RawInterface {
return nil
}
-// GetRaw gets the current memcache implementation from the context.
-func GetRaw(c context.Context) RawInterface {
+// Raw gets the current memcache implementation from the context.
+func Raw(c context.Context) RawInterface {
ret := getUnfiltered(c)
if ret == nil {
return nil

Powered by Google App Engine
This is Rietveld 408576698