OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/hash_tables.h" | 9 #include "base/hash_tables.h" |
10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "chrome/common/dom_storage_common.h" | 12 #include "content/common/dom_storage_common.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" |
14 | 14 |
15 class DOMStorageArea; | 15 class DOMStorageArea; |
16 class DOMStorageContext; | 16 class DOMStorageContext; |
17 class FilePath; | 17 class FilePath; |
18 class HostContentSettingsMap; | 18 class HostContentSettingsMap; |
19 | 19 |
20 namespace WebKit { | 20 namespace WebKit { |
21 class WebStorageArea; | 21 class WebStorageArea; |
22 class WebStorageNamespace; | 22 class WebStorageNamespace; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // demand. | 76 // demand. |
77 WebKit::WebString data_dir_path_; | 77 WebKit::WebString data_dir_path_; |
78 | 78 |
79 // SessionStorage vs. LocalStorage. | 79 // SessionStorage vs. LocalStorage. |
80 const DOMStorageType dom_storage_type_; | 80 const DOMStorageType dom_storage_type_; |
81 | 81 |
82 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageNamespace); | 82 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageNamespace); |
83 }; | 83 }; |
84 | 84 |
85 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 85 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
OLD | NEW |