Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Unified Diff: content/browser/indexed_db/indexed_db_internals_ui.cc

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactoring after Passing URLRequestContextGetter. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(
« no previous file with comments | « content/browser/indexed_db/indexed_db_factory_unittest.cc ('k') | content/browser/indexed_db/indexed_db_metadata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698