blob: 15008e3bae20a6ebd7586b8fb6398e3c09a8459e [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_
#define CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_
#include <stdint.h>
#include <string>
#include "third_party/blink/public/platform/web_storage_namespace.h"
namespace content {
class WebStorageNamespaceImpl : public blink::WebStorageNamespace {
public:
explicit WebStorageNamespaceImpl(const std::string& namespace_id);
~WebStorageNamespaceImpl() override;
// See WebStorageNamespace.h for documentation on these functions.
blink::WebStorageArea* CreateStorageArea(
const blink::WebSecurityOrigin& origin) override;
virtual blink::WebStorageNamespace* copy();
blink::WebString GetNamespaceId() const override;
bool IsSameNamespace(const WebStorageNamespace&) const override;
private:
std::string namespace_id_;
};
} // namespace content
#endif // CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_