| Index: chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| diff --git a/chrome/browser/ui/webui/cookies_tree_model_util.cc b/chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| index 24de43691f0e5b80c56b1ff669ded38d145037a8..ab13500780491fc7ee73fab3ab0a0b85ba64bd21 100644
|
| --- a/chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| +++ b/chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| @@ -125,9 +125,9 @@ bool CookiesTreeModelUtil::GetCookieTreeNodeDictionary(
|
| dict->SetString(kKeyContent, cookie.Value());
|
| dict->SetString(kKeyDomain, cookie.Domain());
|
| dict->SetString(kKeyPath, cookie.Path());
|
| - dict->SetString(kKeySendFor, cookie.IsSecure() ?
|
| - l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_SENDFOR_SECURE) :
|
| - l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_SENDFOR_ANY));
|
| + dict->SetString(kKeySendFor,
|
| + l10n_util::GetStringUTF16(
|
| + CookiesTreeModel::GetSendForMessageID(cookie)));
|
| std::string accessible = cookie.IsHttpOnly() ?
|
| l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_ACCESSIBLE_TO_SCRIPT_NO) :
|
| l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_ACCESSIBLE_TO_SCRIPT_YES);
|
|
|