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 318148d50d7a376136ba0ef8f04a26b641f801a9..fbbf85a687436315a52c1a66eda1545c2e3db2fd 100644 |
--- a/chrome/browser/ui/webui/cookies_tree_model_util.cc |
+++ b/chrome/browser/ui/webui/cookies_tree_model_util.cc |
@@ -25,6 +25,8 @@ const char kKeyIcon[] = "icon"; |
const char kKeyType[] = "type"; |
const char kKeyHasChildren[] = "hasChildren"; |
+const char kKeyAppId[] = "appId"; |
+ |
const char kKeyName[] = "name"; |
const char kKeyContent[] = "content"; |
const char kKeyDomain[] = "domain"; |
@@ -94,6 +96,7 @@ bool CookiesTreeModelUtil::GetCookieTreeNodeDictionary( |
switch (node.GetDetailedInfo().node_type) { |
case CookieTreeNode::DetailedInfo::TYPE_ORIGIN: { |
dict->SetString(kKeyType, "origin"); |
+ dict->SetString(kKeyAppId, node.GetDetailedInfo().app_id); |
#if defined(OS_MACOSX) |
dict->SetString(kKeyIcon, "chrome://theme/IDR_BOOKMARK_BAR_FOLDER"); |
#endif |