Home
last modified time | relevance | path

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

/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
Dwebrequest_action.cc61 std::string string_tmp; in ParseResponseCookieImpl() local
64 if (dict->GetString(keys::kNameKey, &string_tmp)) in ParseResponseCookieImpl()
65 cookie->name.reset(new std::string(string_tmp)); in ParseResponseCookieImpl()
66 if (dict->GetString(keys::kValueKey, &string_tmp)) in ParseResponseCookieImpl()
67 cookie->value.reset(new std::string(string_tmp)); in ParseResponseCookieImpl()
68 if (dict->GetString(keys::kExpiresKey, &string_tmp)) in ParseResponseCookieImpl()
69 cookie->expires.reset(new std::string(string_tmp)); in ParseResponseCookieImpl()
72 if (dict->GetString(keys::kDomainKey, &string_tmp)) in ParseResponseCookieImpl()
73 cookie->domain.reset(new std::string(string_tmp)); in ParseResponseCookieImpl()
74 if (dict->GetString(keys::kPathKey, &string_tmp)) in ParseResponseCookieImpl()
[all …]