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

Unified Diff: content/browser/dom_storage/session_storage_namespace_impl_new.cc

Issue 10086018: More DomStorage house cleaning (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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: content/browser/dom_storage/session_storage_namespace_impl_new.cc
===================================================================
--- content/browser/dom_storage/session_storage_namespace_impl_new.cc (revision 132437)
+++ content/browser/dom_storage/session_storage_namespace_impl_new.cc (working copy)
@@ -1,35 +0,0 @@
-// 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/dom_storage/session_storage_namespace_impl_new.h"
-
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND
-
-#include "content/browser/dom_storage/dom_storage_context_impl_new.h"
-#include "webkit/dom_storage/dom_storage_session.h"
-
-using dom_storage::DomStorageSession;
-
-SessionStorageNamespaceImpl::SessionStorageNamespaceImpl(
- DOMStorageContextImpl* context)
- : session_(new DomStorageSession(context->context())) {
-}
-
-int64 SessionStorageNamespaceImpl::id() const {
- return session_->namespace_id();
-}
-
-SessionStorageNamespaceImpl* SessionStorageNamespaceImpl::Clone() {
- return new SessionStorageNamespaceImpl(session_->Clone());
-}
-
-SessionStorageNamespaceImpl::SessionStorageNamespaceImpl(
- DomStorageSession* clone)
- : session_(clone) {
-}
-
-SessionStorageNamespaceImpl::~SessionStorageNamespaceImpl() {
-}
-
-#endif // ENABLE_NEW_DOM_STORAGE_BACKEND

Powered by Google App Engine
This is Rietveld 408576698