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

Unified Diff: content/browser/storage_partition_impl.cc

Issue 1745603002: Switch LevelDBWrapper::GetAll to use the new Mojo sync IPC mechanism. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment Created 4 years, 10 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
« no previous file with comments | « content/browser/storage_partition_impl.h ('k') | content/common/leveldb_wrapper.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.cc
diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
index bf4c1f5129a7369bfa5720b496ec9149824768ea..571df26827fa24a0783a7de0f69b93e71dd68520 100644
--- a/content/browser/storage_partition_impl.cc
+++ b/content/browser/storage_partition_impl.cc
@@ -593,10 +593,8 @@ BackgroundSyncContextImpl* StoragePartitionImpl::GetBackgroundSyncContext() {
void StoragePartitionImpl::OpenLocalStorage(
const mojo::String& origin,
- LevelDBObserverPtr observer,
mojo::InterfaceRequest<LevelDBWrapper> request) {
- dom_storage_context_->OpenLocalStorage(origin, std::move(observer),
- std::move(request));
+ dom_storage_context_->OpenLocalStorage(origin, std::move(request));
}
void StoragePartitionImpl::ClearDataImpl(
« no previous file with comments | « content/browser/storage_partition_impl.h ('k') | content/common/leveldb_wrapper.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698