#ifndef GOOGLE_APIS_DEFAULT_API_KEYS_H_
#define GOOGLE_APIS_DEFAULT_API_KEYS_H_
#include "build/build_config.h"
namespace google_apis {
struct DefaultApiKeys {
static constexpr char kUnsetApiToken[] = "dummytoken";
bool allow_unset_values;
bool allow_override_via_environment;
const char* google_api_key;
const char* google_metrics_signing_key;
#if BUILDFLAG(IS_ANDROID)
const char* google_api_key_android_non_stable;
#else
const char* google_api_key_hats;
#endif
const char* google_api_key_remoting;
const char* google_api_key_soda;
#if BUILDFLAG(IS_CHROMEOS)
const char* google_api_key_sharing;
const char* google_api_key_read_aloud;
const char* google_api_key_fresnel;
const char* google_api_key_boca;
const char* google_api_key_cros_system_geo_;
const char* google_api_key_cros_chrome_geo_;
#endif
const char* google_client_id_main;
const char* google_client_secret_main;
const char* google_client_id_remoting;
const char* google_client_secret_remoting;
const char* google_client_id_remoting_host;
const char* google_client_secret_remoting_host;
const char* google_default_client_id;
const char* google_default_client_secret;
};
}
#endif