| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "content/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/platform/WebString.h" |
| 14 | 14 |
| 15 class DOMStorageArea; | 15 class DOMStorageArea; |
| 16 class DOMStorageContext; | 16 class DOMStorageContext; |
| 17 class FilePath; | 17 class FilePath; |
| 18 | 18 |
| 19 namespace WebKit { | 19 namespace WebKit { |
| 20 class WebStorageArea; | 20 class WebStorageArea; |
| 21 class WebStorageNamespace; | 21 class WebStorageNamespace; |
| 22 } | 22 } |
| 23 | 23 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 // demand. | 74 // demand. |
| 75 WebKit::WebString data_dir_path_; | 75 WebKit::WebString data_dir_path_; |
| 76 | 76 |
| 77 // SessionStorage vs. LocalStorage. | 77 // SessionStorage vs. LocalStorage. |
| 78 const DOMStorageType dom_storage_type_; | 78 const DOMStorageType dom_storage_type_; |
| 79 | 79 |
| 80 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageNamespace); | 80 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageNamespace); |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 83 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
| OLD | NEW |