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

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

Issue 1814003002: Implement the renderer side of the mojo based local storage implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments 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/renderer/dom_storage/local_storage_cached_areas.cc ('k') | mojo/common/common_type_converters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/dom_storage/local_storage_namespace.cc
diff --git a/content/renderer/dom_storage/local_storage_namespace.cc b/content/renderer/dom_storage/local_storage_namespace.cc
index 933b621ed0bbdc35b2fd54f9a254b17d4d01f264..7ccb8bf9c5a746fc30ecc31d907602704f60c84f 100644
--- a/content/renderer/dom_storage/local_storage_namespace.cc
+++ b/content/renderer/dom_storage/local_storage_namespace.cc
@@ -27,9 +27,8 @@ LocalStorageNamespace::~LocalStorageNamespace() {
WebStorageArea* LocalStorageNamespace::createStorageArea(
const WebString& origin) {
- return new LocalStorageArea(
- local_storage_cached_areas_->GetLocalStorageCachedArea(
- url::Origin(blink::WebStringToGURL(origin))));
+ return new LocalStorageArea(local_storage_cached_areas_->GetCachedArea(
+ url::Origin(blink::WebStringToGURL(origin))));
}
bool LocalStorageNamespace::isSameNamespace(
« no previous file with comments | « content/renderer/dom_storage/local_storage_cached_areas.cc ('k') | mojo/common/common_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698