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

Unified Diff: tokenserver/client/tokenclient_test.go

Issue 2785973002: token-server: Add protos for new API for generating service account tokens. (Closed)
Patch Set: Created 3 years, 9 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: tokenserver/client/tokenclient_test.go
diff --git a/tokenserver/client/tokenclient_test.go b/tokenserver/client/tokenclient_test.go
index 8427d18dc94c0b442fcb82b6cb54c88f3ba16f7b..d620230561cbdcd3dd56be4d63bd4bc3e78334ec 100644
--- a/tokenserver/client/tokenclient_test.go
+++ b/tokenserver/client/tokenclient_test.go
@@ -97,6 +97,14 @@ func (f *fakeRPCClient) MintDelegationToken(context.Context, *minter.MintDelegat
panic("not implemented")
}
+func (f *fakeRPCClient) MintOAuthTokenGrant(context.Context, *minter.MintOAuthTokenGrantRequest, ...grpc.CallOption) (*minter.MintOAuthTokenGrantResponse, error) {
+ panic("not implemented")
+}
+
+func (f *fakeRPCClient) MintOAuthTokenViaGrant(context.Context, *minter.MintOAuthTokenViaGrantRequest, ...grpc.CallOption) (*minter.MintOAuthTokenViaGrantResponse, error) {
+ panic("not implemented")
+}
+
// fakeSigner implements Signer.
type fakeSigner struct{}

Powered by Google App Engine
This is Rietveld 408576698