| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
| 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/string16.h" | |
| 10 #include "base/hash_tables.h" | 9 #include "base/hash_tables.h" |
| 11 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 11 #include "base/string16.h" |
| 12 #include "chrome/common/dom_storage_common.h" | 12 #include "chrome/common/dom_storage_common.h" |
| 13 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" | 13 #include "third_party/WebKit/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; |
| (...skipping 54 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 // CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ | 85 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_NAMESPACE_H_ |
| OLD | NEW |