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

Unified Diff: services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h

Issue 2015643002: Add (optional) options to Run[Main]Application(). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: doh Created 4 years, 7 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_meta_factory_impl.h
diff --git a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h
index 5b3a047381c4575a65df73378a33df1383bc22ec..8596c03ea3e0a5f4631a8e06b5edfff83ab01816 100644
--- a/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h
+++ b/services/authenticating_url_loader_interceptor/authenticating_url_loader_interceptor_meta_factory_impl.h
@@ -16,7 +16,7 @@
namespace mojo {
-class ApplicationImpl;
+class Shell;
class AuthenticatingURLLoaderInterceptorMetaFactoryImpl
: public AuthenticatingURLLoaderInterceptorMetaFactory {
@@ -24,7 +24,7 @@ class AuthenticatingURLLoaderInterceptorMetaFactoryImpl
AuthenticatingURLLoaderInterceptorMetaFactoryImpl(
mojo::InterfaceRequest<AuthenticatingURLLoaderInterceptorMetaFactory>
request,
- mojo::ApplicationImpl* app,
+ mojo::Shell* shell,
std::map<GURL, std::string>* cached_tokens);
~AuthenticatingURLLoaderInterceptorMetaFactoryImpl() override;
@@ -36,7 +36,7 @@ class AuthenticatingURLLoaderInterceptorMetaFactoryImpl
authentication_service) override;
StrongBinding<AuthenticatingURLLoaderInterceptorMetaFactory> binding_;
- ApplicationImpl* app_;
+ Shell* const shell_;
std::map<GURL, std::string>* cached_tokens_;
};

Powered by Google App Engine
This is Rietveld 408576698