| 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 #include "webkit/browser/dom_storage/dom_storage_host.h" | 5 #include "webkit/browser/dom_storage/dom_storage_host.h" |
| 6 | 6 |
| 7 #include "googleurl/src/gurl.h" | 7 #include "url/gurl.h" |
| 8 #include "webkit/browser/dom_storage/dom_storage_area.h" | 8 #include "webkit/browser/dom_storage/dom_storage_area.h" |
| 9 #include "webkit/browser/dom_storage/dom_storage_context.h" | 9 #include "webkit/browser/dom_storage/dom_storage_context.h" |
| 10 #include "webkit/browser/dom_storage/dom_storage_namespace.h" | 10 #include "webkit/browser/dom_storage/dom_storage_namespace.h" |
| 11 #include "webkit/common/dom_storage/dom_storage_types.h" | 11 #include "webkit/common/dom_storage/dom_storage_types.h" |
| 12 | 12 |
| 13 namespace dom_storage { | 13 namespace dom_storage { |
| 14 | 14 |
| 15 DomStorageHost::DomStorageHost(DomStorageContext* context) | 15 DomStorageHost::DomStorageHost(DomStorageContext* context) |
| 16 : context_(context) { | 16 : context_(context) { |
| 17 } | 17 } |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 return NULL; | 161 return NULL; |
| 162 return found->second.namespace_.get(); | 162 return found->second.namespace_.get(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 // NamespaceAndArea | 165 // NamespaceAndArea |
| 166 | 166 |
| 167 DomStorageHost::NamespaceAndArea::NamespaceAndArea() {} | 167 DomStorageHost::NamespaceAndArea::NamespaceAndArea() {} |
| 168 DomStorageHost::NamespaceAndArea::~NamespaceAndArea() {} | 168 DomStorageHost::NamespaceAndArea::~NamespaceAndArea() {} |
| 169 | 169 |
| 170 } // namespace dom_storage | 170 } // namespace dom_storage |
| OLD | NEW |