Index: content/browser/dom_storage/session_storage_namespace_impl_new.h |
=================================================================== |
--- content/browser/dom_storage/session_storage_namespace_impl_new.h (revision 132437) |
+++ content/browser/dom_storage/session_storage_namespace_impl_new.h (working copy) |
@@ -1,40 +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. |
- |
-#ifndef CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |
-#define CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |
-#pragma once |
- |
-#include "base/basictypes.h" |
-#include "base/memory/ref_counted.h" |
-#include "content/common/content_export.h" |
-#include "content/public/browser/session_storage_namespace.h" |
-#include "webkit/dom_storage/dom_storage_types.h" // Temporary |
- |
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND |
- |
-class DOMStorageContextImpl; |
- |
-namespace dom_storage { |
-class DomStorageSession; |
-} |
- |
-class SessionStorageNamespaceImpl |
- : NON_EXPORTED_BASE(public content::SessionStorageNamespace) { |
- public: |
- explicit SessionStorageNamespaceImpl(DOMStorageContextImpl* context); |
- int64 id() const; |
- SessionStorageNamespaceImpl* Clone(); |
- |
- private: |
- explicit SessionStorageNamespaceImpl(dom_storage::DomStorageSession* clone); |
- virtual ~SessionStorageNamespaceImpl(); |
- |
- scoped_refptr<dom_storage::DomStorageSession> session_; |
- |
- DISALLOW_COPY_AND_ASSIGN(SessionStorageNamespaceImpl); |
-}; |
- |
-#endif // ENABLE_NEW_DOM_STORAGE_BACKEND |
-#endif // CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |