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_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
6 #define CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
7 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/callback.h" | 10 #include "base/callback.h" |
12 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
13 #include "webkit/dom_storage/dom_storage_context.h" | 12 #include "webkit/dom_storage/dom_storage_context.h" |
14 | 13 |
15 class GURL; | 14 class GURL; |
16 | 15 |
17 namespace content { | 16 namespace content { |
(...skipping 21 matching lines...) Expand all Loading... |
39 virtual scoped_refptr<SessionStorageNamespace> RecreateSessionStorage( | 38 virtual scoped_refptr<SessionStorageNamespace> RecreateSessionStorage( |
40 const std::string& persistent_id) = 0; | 39 const std::string& persistent_id) = 0; |
41 | 40 |
42 protected: | 41 protected: |
43 virtual ~DOMStorageContext() {} | 42 virtual ~DOMStorageContext() {} |
44 }; | 43 }; |
45 | 44 |
46 } // namespace content | 45 } // namespace content |
47 | 46 |
48 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 47 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
OLD | NEW |