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 WEBKIT_DOM_STORAGE_DOM_STORAGE_SESSION_H_ | 5 #ifndef WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_SESSION_H_ |
6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_SESSION_H_ | 6 #define WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_SESSION_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "webkit/storage/webkit_storage_export.h" | 12 #include "webkit/storage/webkit_storage_export.h" |
13 | 13 |
14 namespace dom_storage { | 14 namespace dom_storage { |
15 | 15 |
16 class DomStorageContext; | 16 class DomStorageContext; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 scoped_refptr<DomStorageContext> context_; | 55 scoped_refptr<DomStorageContext> context_; |
56 int64 namespace_id_; | 56 int64 namespace_id_; |
57 std::string persistent_namespace_id_; | 57 std::string persistent_namespace_id_; |
58 bool should_persist_; | 58 bool should_persist_; |
59 | 59 |
60 DISALLOW_IMPLICIT_CONSTRUCTORS(DomStorageSession); | 60 DISALLOW_IMPLICIT_CONSTRUCTORS(DomStorageSession); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace dom_storage | 63 } // namespace dom_storage |
64 | 64 |
65 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_SESSION_H_ | 65 #endif // WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_SESSION_H_ |
OLD | NEW |