blob: 8ec1992b762f8f743c4b636807e13113caa35d7c [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/dom_storage/local_storage_namespace.h"
#include "content/renderer/dom_storage/local_storage_area.h"
#include "content/renderer/dom_storage/local_storage_cached_areas.h"
#include "third_party/blink/public/platform/url_conversion.h"
#include "third_party/blink/public/platform/web_url.h"
#include "url/gurl.h"
#include "url/origin.h"
using blink::WebStorageArea;
using blink::WebStorageNamespace;
namespace content {
LocalStorageNamespace::LocalStorageNamespace(
LocalStorageCachedAreas* local_storage_cached_areas)
: local_storage_cached_areas_(local_storage_cached_areas) {
}
LocalStorageNamespace::~LocalStorageNamespace() {
}
blink::WebString LocalStorageNamespace::GetNamespaceId() const {
return blink::WebString();
}
WebStorageArea* LocalStorageNamespace::CreateStorageArea(
const blink::WebSecurityOrigin& origin) {
return new LocalStorageArea(
local_storage_cached_areas_->GetCachedArea(origin));
}
bool LocalStorageNamespace::IsSameNamespace(
const WebStorageNamespace& other) const {
NOTREACHED() << "This method should only be called for session storage.";
return false;
}
} // namespace content