2024-11-13 00:26:42 +00:00
|
|
|
diff --git a/google_apis/api_key_cache.cc b/google_apis/api_key_cache.cc
|
|
|
|
index e8bc9bb79704..38e5d2bd005f 100644
|
|
|
|
--- a/google_apis/api_key_cache.cc
|
|
|
|
+++ b/google_apis/api_key_cache.cc
|
|
|
|
@@ -221,14 +221,14 @@ ApiKeyCache::ApiKeyCache(const DefaultApiKeys& default_api_keys) {
|
|
|
|
|
|
|
|
std::string default_client_id = CalculateKeyValue(
|
|
|
|
default_api_keys.google_default_client_id,
|
|
|
|
- STRINGIZE_NO_EXPANSION(GOOGLE_DEFAULT_CLIENT_ID), std::string(), nullptr,
|
|
|
|
+ STRINGIZE_NO_EXPANSION(GOOGLE_DEFAULT_CLIENT_ID), std::string(), ::switches::kOAuth2ClientID,
|
|
|
|
std::string(), environment.get(), command_line, gaia_config,
|
|
|
|
default_api_keys.allow_override_via_environment,
|
|
|
|
default_api_keys.allow_unset_values);
|
|
|
|
std::string default_client_secret = CalculateKeyValue(
|
|
|
|
default_api_keys.google_default_client_secret,
|
|
|
|
STRINGIZE_NO_EXPANSION(GOOGLE_DEFAULT_CLIENT_SECRET), std::string(),
|
|
|
|
- nullptr, std::string(), environment.get(), command_line, gaia_config,
|
|
|
|
+ ::switches::kOAuth2ClientSecret, std::string(), environment.get(), command_line, gaia_config,
|
|
|
|
default_api_keys.allow_override_via_environment,
|
|
|
|
default_api_keys.allow_unset_values);
|
2021-03-03 01:25:53 +00:00
|
|
|
|