Home | History | Annotate | Download | only in extensions

Lines Matching full:keys

21 namespace keys = extension_cookies_api_constants;
53 result->SetString(keys::kNameKey, cookie.Name());
54 result->SetString(keys::kValueKey, cookie.Value());
55 result->SetString(keys::kDomainKey, cookie.Domain());
56 result->SetBoolean(keys::kHostOnlyKey,
58 result->SetString(keys::kPathKey, cookie.Path());
59 result->SetBoolean(keys::kSecureKey, cookie.IsSecure());
60 result->SetBoolean(keys::kHttpOnlyKey, cookie.IsHttpOnly());
61 result->SetBoolean(keys::kSessionKey, !cookie.DoesExpire());
63 result->SetDouble(keys::kExpirationDateKey,
66 result->SetString(keys::kStoreIdKey, store_id);
76 result->SetString(keys::kIdKey, GetStoreIdFromProfile(profile));
77 result->Set(keys::kTabIdsKey, tab_ids);
140 return MatchesString(keys::kNameKey, cookie.Name()) &&
142 MatchesString(keys::kPathKey, cookie.Path()) &&
143 MatchesBoolean(keys::kSecureKey, cookie.IsSecure()) &&
144 MatchesBoolean(keys::kSessionKey, !cookie.DoesExpire());
164 if (!details_->HasKey(keys::kDomainKey))
168 if (!details_->GetString(keys::kDomainKey, &filter_value))