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

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

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.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_

Powered by Google App Engine
This is Rietveld 408576698