| Index: content/browser/indexed_db/indexed_db_internals_ui.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_internals_ui.cc b/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| index 357ed1e148b2b7ca1663d3f6e50e266270080c69..bd6887b9f0d7468ebf5a4ecaa583338b7727dfe2 100644
|
| --- a/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| +++ b/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| @@ -104,9 +104,11 @@ void IndexedDBInternalsUI::GetAllOriginsOnIndexedDBThread(
|
| const base::FilePath& context_path) {
|
| DCHECK(context->TaskRunner()->RunsTasksOnCurrentThread());
|
|
|
| +#if 0
|
| IndexedDBContextImpl* context_impl =
|
| static_cast<IndexedDBContextImpl*>(context.get());
|
|
|
| + // TODO(cmumford): Convert this call to Mojo.
|
| std::unique_ptr<base::ListValue> info_list(
|
| context_impl->GetAllOriginsDetails());
|
| bool is_incognito = context_impl->is_incognito();
|
| @@ -118,6 +120,7 @@ void IndexedDBInternalsUI::GetAllOriginsOnIndexedDBThread(
|
| base::Unretained(this),
|
| base::Passed(&info_list),
|
| is_incognito ? base::FilePath() : context_path));
|
| +#endif
|
| }
|
|
|
| void IndexedDBInternalsUI::OnOriginsReady(
|
|
|