blob: cfa2a5ae7e60b885b7df3578c0a21c169910706a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) 2010 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 "chrome/browser/in_process_webkit/session_storage_namespace.h"
#include "chrome/browser/in_process_webkit/dom_storage_context.h"
#include "chrome/browser/in_process_webkit/webkit_context.h"
#include "chrome/browser/profile.h"
SessionStorageNamespace::SessionStorageNamespace(Profile* profile)
: webkit_context_(profile->GetWebKitContext()),
id_(webkit_context_->dom_storage_context()
->AllocateSessionStorageNamespaceId()) {
}
SessionStorageNamespace::SessionStorageNamespace(WebKitContext* webkit_context,
int64 id)
: webkit_context_(webkit_context),
id_(id) {
}
SessionStorageNamespace::~SessionStorageNamespace() {
webkit_context_->DeleteSessionStorageNamespace(id_);
}
SessionStorageNamespace* SessionStorageNamespace::Clone() {
return new SessionStorageNamespace(
webkit_context_,
webkit_context_->dom_storage_context()->CloneSessionStorage(id_));
}
|