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

Unified Diff: services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h

Issue 1682113003: Mojo C++ bindings: Generate InterfaceHandle<> instead of InterfacePtr<>. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: delay InterfacePtr::Create() until you actually need an InterfacePtr. GetProxy() and ConnectToAppl… Created 4 years, 10 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: services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h
diff --git a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h
index 2712e0b0e9765f76c7267abf58618defafb89270..62a3d8168b2c5c29789378124992e8bc25651864 100644
--- a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h
+++ b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_factory.h
@@ -25,7 +25,8 @@ class AuthenticatingURLLoaderInterceptorFactory
public:
AuthenticatingURLLoaderInterceptorFactory(
mojo::InterfaceRequest<URLLoaderInterceptorFactory> request,
- authentication::AuthenticationServicePtr authentication_service,
+ mojo::InterfaceHandle<authentication::AuthenticationService>
+ authentication_service,
mojo::ApplicationImpl* app,
std::map<GURL, std::string>* cached_tokens);
~AuthenticatingURLLoaderInterceptorFactory() override;

Powered by Google App Engine
This is Rietveld 408576698