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_NAMESPACE_H_ | 5 #ifndef WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_NAMESPACE_H_ |
6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_NAMESPACE_H_ | 6 #define WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_NAMESPACE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "webkit/storage/webkit_storage_export.h" | 13 #include "webkit/storage/webkit_storage_export.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 | 16 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 std::string persistent_namespace_id_; | 97 std::string persistent_namespace_id_; |
98 base::FilePath directory_; | 98 base::FilePath directory_; |
99 AreaMap areas_; | 99 AreaMap areas_; |
100 scoped_refptr<DomStorageTaskRunner> task_runner_; | 100 scoped_refptr<DomStorageTaskRunner> task_runner_; |
101 scoped_refptr<SessionStorageDatabase> session_storage_database_; | 101 scoped_refptr<SessionStorageDatabase> session_storage_database_; |
102 }; | 102 }; |
103 | 103 |
104 } // namespace dom_storage | 104 } // namespace dom_storage |
105 | 105 |
106 | 106 |
107 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_NAMESPACE_H_ | 107 #endif // WEBKIT_BROWSER_DOM_STORAGE_DOM_STORAGE_NAMESPACE_H_ |
OLD | NEW |