| 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 d03eebd6673aaa773e0d187887d38020be7bfe11..d6f0090737fcf24887c10b59b918c34af30336b1 100644
|
| --- a/chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| +++ b/chrome/browser/ui/webui/cookies_tree_model_util.cc
|
| @@ -13,6 +13,7 @@
|
| #include "base/strings/string_split.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/browsing_data/cookies_tree_model.h"
|
| +#include "content/public/browser/indexed_db_context.h"
|
| #include "grit/generated_resources.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -180,7 +181,7 @@ bool CookiesTreeModelUtil::GetCookieTreeNodeDictionary(
|
| dict->SetString(kKeyType, "indexed_db");
|
| dict->SetString(kKeyIcon, "chrome://theme/IDR_COOKIE_STORAGE_ICON");
|
|
|
| - const BrowsingDataIndexedDBHelper::IndexedDBInfo& indexed_db_info =
|
| + const content::IndexedDBInfo& indexed_db_info =
|
| *node.GetDetailedInfo().indexed_db_info;
|
|
|
| dict->SetString(kKeyOrigin, indexed_db_info.origin.spec());
|
|
|