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

Unified Diff: content/renderer/dom_storage/local_storage_cached_area.cc

Issue 1798113002: Switch StoragePartitionService interface to use url::Origin instead of mojo string. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android builds per Ken Created 4 years, 9 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/content_common_mojo_bindings.gyp ('k') | mojo/public/tools/bindings/mojom.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/dom_storage/local_storage_cached_area.cc
diff --git a/content/renderer/dom_storage/local_storage_cached_area.cc b/content/renderer/dom_storage/local_storage_cached_area.cc
index 1c3b2e22199c2dd1ae7bde70ef752d27982bd8ee..45336e2afcc8efc058f122edb3cf918840edfe72 100644
--- a/content/renderer/dom_storage/local_storage_cached_area.cc
+++ b/content/renderer/dom_storage/local_storage_cached_area.cc
@@ -16,7 +16,7 @@ LocalStorageCachedArea::LocalStorageCachedArea(
: loaded_(false), origin_(origin), binding_(this),
cached_areas_(cached_areas) {
storage_partition_service->OpenLocalStorage(
- origin_.Serialize(), mojo::GetProxy(&leveldb_));
+ origin_, mojo::GetProxy(&leveldb_));
}
LocalStorageCachedArea::~LocalStorageCachedArea() {
« no previous file with comments | « content/content_common_mojo_bindings.gyp ('k') | mojo/public/tools/bindings/mojom.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698