| 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/tools/test_shell/simple_dom_storage_system.h" | 5 #include "webkit/tools/test_shell/simple_dom_storage_system.h" |
| 6 | 6 |
| 7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebStorageArea.h" | 9 #include "third_party/WebKit/public/platform/WebStorageArea.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebStorageNamespace
.h" | 10 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" |
| 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" | 11 #include "third_party/WebKit/public/platform/WebURL.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageEventDispat
cher.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageEventDispat
cher.h" |
| 13 #include "webkit/database/database_util.h" | 13 #include "webkit/database/database_util.h" |
| 14 #include "webkit/dom_storage/dom_storage_area.h" | 14 #include "webkit/dom_storage/dom_storage_area.h" |
| 15 #include "webkit/dom_storage/dom_storage_host.h" | 15 #include "webkit/dom_storage/dom_storage_host.h" |
| 16 | 16 |
| 17 using dom_storage::DomStorageContext; | 17 using dom_storage::DomStorageContext; |
| 18 using dom_storage::DomStorageHost; | 18 using dom_storage::DomStorageHost; |
| 19 using dom_storage::DomStorageSession; | 19 using dom_storage::DomStorageSession; |
| 20 using webkit_database::DatabaseUtil; | 20 using webkit_database::DatabaseUtil; |
| 21 using WebKit::WebStorageArea; | 21 using WebKit::WebStorageArea; |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 key, | 275 key, |
| 276 old_value, | 276 old_value, |
| 277 new_value, | 277 new_value, |
| 278 area->origin(), | 278 area->origin(), |
| 279 page_url, | 279 page_url, |
| 280 session_namespace_for_event_dispatch, | 280 session_namespace_for_event_dispatch, |
| 281 area_being_processed_, | 281 area_being_processed_, |
| 282 true /* originatedInProcess */); | 282 true /* originatedInProcess */); |
| 283 } | 283 } |
| 284 } | 284 } |
| OLD | NEW |