OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |
6 #define CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ | 6 #define CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
11 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
12 #include "content/public/browser/session_storage_namespace.h" | 11 #include "content/public/browser/session_storage_namespace.h" |
13 | 12 |
14 class DOMStorageContextImpl; | 13 class DOMStorageContextImpl; |
15 | 14 |
16 namespace dom_storage { | 15 namespace dom_storage { |
17 class DomStorageSession; | 16 class DomStorageSession; |
(...skipping 25 matching lines...) Expand all Loading... |
43 private: | 42 private: |
44 explicit SessionStorageNamespaceImpl(dom_storage::DomStorageSession* clone); | 43 explicit SessionStorageNamespaceImpl(dom_storage::DomStorageSession* clone); |
45 virtual ~SessionStorageNamespaceImpl(); | 44 virtual ~SessionStorageNamespaceImpl(); |
46 | 45 |
47 scoped_refptr<dom_storage::DomStorageSession> session_; | 46 scoped_refptr<dom_storage::DomStorageSession> session_; |
48 | 47 |
49 DISALLOW_COPY_AND_ASSIGN(SessionStorageNamespaceImpl); | 48 DISALLOW_COPY_AND_ASSIGN(SessionStorageNamespaceImpl); |
50 }; | 49 }; |
51 | 50 |
52 #endif // CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ | 51 #endif // CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_ |
OLD | NEW |