Home
last modified time | relevance | path

Searched refs:error_dict (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/devtools/
Ddevtools_protocol.cc171 base::DictionaryValue* error_dict = NULL; in ParseResponse() local
172 if (dict->GetDictionary(kErrorParam, &error_dict)) in ParseResponse()
173 error_dict->GetInteger(kErrorCodeParam, &error_code); in ParseResponse()
/external/chromium_org/chrome/common/mac/
Dcfbundle_blocker.mm194 NSMutableDictionary* error_dict =
197 [error_dict setObject:bundle_id forKey:@"bundle_id"];
200 [error_dict setObject:version forKey:@"version"];
203 [error_dict setObject:path forKey:@"path"];
208 [error_dict setObject:url_absolute_string forKey:@"url"];
214 base::mac::NSToCFCast(error_dict));
/external/chromium_org/chrome/test/chromedriver/chrome/
Ddevtools_client_impl.cc27 base::DictionaryValue* error_dict; in ParseInspectorError() local
28 if (!error || !error->GetAsDictionary(&error_dict)) in ParseInspectorError()
31 if (error_dict->GetString("message", &error_message) && in ParseInspectorError()
/external/chromium_org/content/browser/devtools/
Ddevtools_protocol.cc271 const base::DictionaryValue* error_dict; in ParseResponse() local
272 if (response_dict->GetDictionary(kErrorParam, &error_dict)) { in ParseResponse()