| Index: services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_app.h
|
| diff --git a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_app.h b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_app.h
|
| index 10050fb8a8b326f8b7d24e7699acb268dcdd86a1..5a71455da60b0a352ca80a2a84d3ced47c907533 100644
|
| --- a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_app.h
|
| +++ b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_app.h
|
| @@ -8,15 +8,12 @@
|
| #include "base/macros.h"
|
| #include "mojo/public/cpp/application/application_connection.h"
|
| #include "mojo/public/cpp/application/application_delegate.h"
|
| -#include "mojo/public/cpp/application/interface_factory.h"
|
| #include "mojo/services/authenticating_url_loader_interceptor/interfaces/authenticating_url_loader_interceptor_meta_factory.mojom.h"
|
| #include "services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h"
|
|
|
| namespace mojo {
|
|
|
| -class AuthenticatingURLLoaderInterceptorApp
|
| - : public ApplicationDelegate,
|
| - public InterfaceFactory<AuthenticatingURLLoaderInterceptorMetaFactory> {
|
| +class AuthenticatingURLLoaderInterceptorApp : public ApplicationDelegate {
|
| public:
|
| AuthenticatingURLLoaderInterceptorApp();
|
| ~AuthenticatingURLLoaderInterceptorApp() override;
|
| @@ -26,11 +23,6 @@ class AuthenticatingURLLoaderInterceptorApp
|
| void Initialize(ApplicationImpl* app) override;
|
| bool ConfigureIncomingConnection(ApplicationConnection* connection) override;
|
|
|
| - // InterfaceFactory<AuthenticatingURLLoaderInterceptorMetaFactory>
|
| - void Create(const ConnectionContext& connection_context,
|
| - InterfaceRequest<AuthenticatingURLLoaderInterceptorMetaFactory>
|
| - request) override;
|
| -
|
| ApplicationImpl* app_;
|
| // Cache received tokens per origin of the connecting app and origin of the
|
| // loaded URL so that once a token has been requested it is not necessary to
|
|
|