summaryrefslogtreecommitdiff
path: root/chromium/components/signin/core/browser/child_account_info_fetcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/signin/core/browser/child_account_info_fetcher.cc')
-rw-r--r--chromium/components/signin/core/browser/child_account_info_fetcher.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/components/signin/core/browser/child_account_info_fetcher.cc b/chromium/components/signin/core/browser/child_account_info_fetcher.cc
index c5af00f71b8..bc8e2670c78 100644
--- a/chromium/components/signin/core/browser/child_account_info_fetcher.cc
+++ b/chromium/components/signin/core/browser/child_account_info_fetcher.cc
@@ -6,6 +6,7 @@
#include "build/build_config.h"
+#include "services/network/public/cpp/shared_url_loader_factory.h"
#if defined(OS_ANDROID)
#include "components/signin/core/browser/child_account_info_fetcher_android.h"
#else
@@ -17,13 +18,13 @@ std::unique_ptr<ChildAccountInfoFetcher> ChildAccountInfoFetcher::CreateFrom(
const std::string& account_id,
AccountFetcherService* fetcher_service,
OAuth2TokenService* token_service,
- net::URLRequestContextGetter* request_context_getter,
+ scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
invalidation::InvalidationService* invalidation_service) {
#if defined(OS_ANDROID)
return ChildAccountInfoFetcherAndroid::Create(fetcher_service, account_id);
#else
return std::make_unique<ChildAccountInfoFetcherImpl>(
- account_id, fetcher_service, token_service, request_context_getter,
+ account_id, fetcher_service, token_service, url_loader_factory,
invalidation_service);
#endif
}