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

Unified Diff: webkit/dom_storage/dom_storage_session.cc

Issue 9146025: Framing for a DOMStorage backend that does not depend on in-process-webkit. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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
Index: webkit/dom_storage/dom_storage_session.cc
===================================================================
--- webkit/dom_storage/dom_storage_session.cc (revision 0)
+++ webkit/dom_storage/dom_storage_session.cc (working copy)
@@ -1,32 +1,33 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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.
-#include "content/browser/in_process_webkit/session_storage_namespace.h"
+#include "webkit/dom_storage/dom_storage_session.h"
#include "base/logging.h"
-#include "content/browser/in_process_webkit/dom_storage_context.h"
-#include "content/browser/in_process_webkit/webkit_context.h"
+#include "webkit/dom_storage/dom_storage_context.h"
-SessionStorageNamespace::SessionStorageNamespace(WebKitContext* webkit_context)
- : webkit_context_(webkit_context),
- id_(webkit_context_->dom_storage_context()
- ->AllocateSessionStorageNamespaceId()) {
+namespace dom_storage {
+
+DOMStorageSession::DOMStorageSession(DOMStorageContext* context)
+ : context_(context),
+ namespace_id_(context->CreateSessionStorageNamespace()) {
}
-SessionStorageNamespace::SessionStorageNamespace(WebKitContext* webkit_context,
- int64 id)
- : webkit_context_(webkit_context),
- id_(id) {
- DCHECK(webkit_context_);
+DOMStorageSession::DOMStorageSession(DOMStorageContext* context,
+ int64 namespace_id)
+ : context_(context),
+ namespace_id_(namespace_id) {
+ DCHECK(context);
}
-SessionStorageNamespace::~SessionStorageNamespace() {
- webkit_context_->DeleteSessionStorageNamespace(id_);
+DOMStorageSession::~DOMStorageSession() {
+ context_->DeleteSessionStorageNamespace(namespace_id_);
}
-SessionStorageNamespace* SessionStorageNamespace::Clone() {
- return new SessionStorageNamespace(
- webkit_context_,
- webkit_context_->dom_storage_context()->CloneSessionStorage(id_));
+DOMStorageSession* DOMStorageSession::Clone() {
+ return new DOMStorageSession(
+ context_, context_->CloneSessionStorageNamespace(namespace_id_));
}
+
+} // namespace dom_storage

Powered by Google App Engine
This is Rietveld 408576698