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

Unified Diff: impl/prod/info.go

Issue 2460473003: impl/prod: Make AEContext private. (Closed)
Patch Set: Update comment. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « impl/prod/context_vm.go ('k') | impl/prod/logger.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/prod/info.go
diff --git a/impl/prod/info.go b/impl/prod/info.go
index 94c8ba3501bb047f307142a77eefaf3b638b1947..80fc32335332f5322951593a1ef9848f5532ee7d 100644
--- a/impl/prod/info.go
+++ b/impl/prod/info.go
@@ -18,11 +18,11 @@ import (
func useGI(usrCtx context.Context) context.Context {
probeCache := getProbeCache(usrCtx)
if probeCache == nil {
- usrCtx = withProbeCache(usrCtx, probe(AEContext(usrCtx)))
+ usrCtx = withProbeCache(usrCtx, probe(getAEContext(usrCtx)))
}
return info.SetFactory(usrCtx, func(ci context.Context) info.RawInterface {
- return giImpl{ci, AEContext(ci)}
+ return giImpl{ci, getAEContext(ci)}
})
}
« no previous file with comments | « impl/prod/context_vm.go ('k') | impl/prod/logger.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698