HomeSort by relevance Sort by last modified time
    Searched refs:api_key (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/components/copresence/rpc/
http_post.cc 29 std::string api_key,
41 if (api_key.empty()) {
44 api_key = google_apis::GetAPIKey();
49 url = net::AppendQueryParameter(url, kApiKeyField, api_key);
http_post.h 46 std::string api_key, // If blank, we overwrite with a default.
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_manager_helper.cc 50 std::string api_key = google_apis::GetAPIKey(); local
51 if (!api_key.empty()) {
53 net::EscapeQueryParamValue(api_key, true).c_str());
ping_manager.cc 143 std::string api_key = google_apis::GetAPIKey(); local
144 if (!api_key.empty()) {
146 net::EscapeQueryParamValue(api_key, true).c_str());
client_side_detection_service.cc 638 std::string api_key = google_apis::GetAPIKey(); local
639 if (!api_key.empty())
640 url = url.Resolve("?key=" + net::EscapeQueryParamValue(api_key, true));
download_protection_service.cc 1078 std::string api_key = google_apis::GetAPIKey(); local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
incident_report_uploader_impl.cc 65 std::string api_key(google_apis::GetAPIKey());
66 if (api_key.empty())
68 return url.Resolve("?key=" + net::EscapeQueryParamValue(api_key, true));
  /external/chromium_org/chrome/browser/extensions/api/copresence/
copresence_api.h 46 void set_api_key(const std::string& api_key) { api_key_ = api_key; }
copresence_api.cc 175 ->set_api_key(params->api_key);
  /external/chromium_org/google_apis/
google_api_keys_unittest.cc 127 #define GOOGLE_API_KEY "bogus api_key"
142 std::string api_key = testcase::g_api_key_cache.Get().api_key(); local
164 EXPECT_NE(0u, api_key.size());
165 EXPECT_NE(DUMMY_API_TOKEN, api_key);
166 EXPECT_NE("bogus api_key", api_key);
167 EXPECT_NE(kDummyToken, api_key);
239 std::string api_key = testcase::g_api_key_cache.Get().api_key(); local
305 std::string api_key = testcase::g_api_key_cache.Get().api_key(); local
378 std::string api_key = testcase::g_api_key_cache.Get().api_key(); local
465 std::string api_key = testcase::g_api_key_cache.Get().api_key(); local
    [all...]
google_api_keys.cc 171 std::string api_key() const { return api_key_; } function in class:google_apis::APIKeyCache
252 return g_api_key_cache.Get().api_key();
  /external/chromium_org/chrome/renderer/net/
net_error_helper_core.h 111 std::string api_key; member in struct:NetErrorHelperCore::NavigationCorrectionParams
157 const std::string& api_key,
net_error_helper.h 110 const std::string& api_key,
net_error_helper.cc 328 const std::string& api_key,
331 country_code, api_key, search_url);
net_error_helper_core.cc 182 params_dict->SetString("key", correction_params.api_key);
642 const std::string& api_key,
647 navigation_correction_params_.api_key = api_key;
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
auto_roll.py 75 api_key = FileToText(self.Config("CLUSTERFUZZ_API_KEY_FILE"))
78 api_key, job_type="linux_asan_d8_dbg", reproducible="True",
  /external/chromium_org/chrome/browser/extensions/
blacklist_state_fetcher.cc 170 std::string api_key = google_apis::GetAPIKey(); local
171 if (!api_key.empty()) {
173 net::EscapeQueryParamValue(api_key, true).c_str());
  /external/chromium_org/chrome/browser/chromeos/geolocation/
simple_geolocation_request.cc 126 std::string api_key = google_apis::GetAPIKey();
127 if (api_key.empty())
133 query += "key=" + net::EscapeQueryParamValue(api_key, true);
  /external/chromium_org/chrome/browser/chromeos/timezone/
timezone_request.cc 127 std::string api_key = google_apis::GetAPIKey(); local
128 if (!api_key.empty()) {
132 query += net::EscapeQueryParamValue(api_key, true);
  /external/chromium_org/chrome/browser/spellchecker/
spelling_service_client.cc 83 std::string api_key = base::GetQuotedJSONString(google_apis::GetAPIKey()); local
90 api_key.c_str());
  /external/chromium_org/content/browser/speech/
google_one_shot_remote_engine.cc 204 std::string api_key = google_apis::GetAPIKey(); local
205 parts.push_back("key=" + net::EscapeQueryParamValue(api_key, true));
  /external/chromium_org/content/browser/geolocation/
network_location_request.cc 194 std::string api_key = google_apis::GetAPIKey(); local
195 if (!api_key.empty()) {
199 query += "key=" + net::EscapeQueryParamValue(api_key, true);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 45 * api_key is the API key, also known as the OAuth consumer key
48 * Both the api_key and shared_secret are generally provided by the site
64 api_key:'12345abcd',
78 * @param api_key {string} The API Key (sometimes referred to as the consumer key) This value is usually supplied by the site you wish to use.
83 /* if (api_key == undefined)
84 throw("Missing argument: api_key (oauth_consumer_key) for OAuthSimple. This is usually provided by the hosting site.");
185 * @param signatures {object} object/hash of the token/signature pairs {api_key:, shared_secret:, oauth_token: oauth_secret:}
195 if (this._secrets['api_key']) {
196 this._secrets.consumer_key = this._secrets.api_key;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 45 * api_key is the API key, also known as the OAuth consumer key
48 * Both the api_key and shared_secret are generally provided by the site
64 api_key:'12345abcd',
78 * @param api_key {string} The API Key (sometimes referred to as the consumer key) This value is usually supplied by the site you wish to use.
83 /* if (api_key == undefined)
84 throw("Missing argument: api_key (oauth_consumer_key) for OAuthSimple. This is usually provided by the hosting site.");
185 * @param signatures {object} object/hash of the token/signature pairs {api_key:, shared_secret:, oauth_token: oauth_secret:}
195 if (this._secrets['api_key']) {
196 this._secrets.consumer_key = this._secrets.api_key;
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 25 'api_key=90485e931f687a9b9c2a66bf58a3861a&' +

Completed in 450 milliseconds

1 2