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

Unified Diff: content/browser/storage_partition_impl.cc

Issue 1837883003: Some fleshing out the mojo based localstorage implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 32f552ed7a5471fd7718bd46320beec7772e6816..28b0eb13450342a737477b57648e1f57fde54821 100644
--- a/content/browser/storage_partition_impl.cc
+++ b/content/browser/storage_partition_impl.cc
@@ -587,8 +587,10 @@ BackgroundSyncContextImpl* StoragePartitionImpl::GetBackgroundSyncContext() {
void StoragePartitionImpl::OpenLocalStorage(
const url::Origin& origin,
+ mojom::LevelDBObserverPtr observer,
mojo::InterfaceRequest<mojom::LevelDBWrapper> request) {
- dom_storage_context_->OpenLocalStorage(origin, std::move(request));
+ dom_storage_context_->OpenLocalStorage(
+ origin, std::move(observer), 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