| 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/public/platform/WebStorageArea.h" | 9 #include "third_party/WebKit/public/platform/WebStorageArea.h" |
| 10 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" | 10 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" |
| 11 #include "third_party/WebKit/public/platform/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/browser/database/database_util.h" | 13 #include "webkit/browser/database/database_util.h" |
| 14 #include "webkit/dom_storage/dom_storage_area.h" | 14 #include "webkit/browser/dom_storage/dom_storage_area.h" |
| 15 #include "webkit/dom_storage/dom_storage_host.h" | 15 #include "webkit/browser/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; |
| 22 using WebKit::WebStorageNamespace; | 22 using WebKit::WebStorageNamespace; |
| 23 using WebKit::WebStorageEventDispatcher; | 23 using WebKit::WebStorageEventDispatcher; |
| 24 using WebKit::WebString; | 24 using WebKit::WebString; |
| 25 using WebKit::WebURL; | 25 using WebKit::WebURL; |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 key, | 277 key, |
| 278 old_value, | 278 old_value, |
| 279 new_value, | 279 new_value, |
| 280 area->origin(), | 280 area->origin(), |
| 281 page_url, | 281 page_url, |
| 282 session_namespace_for_event_dispatch, | 282 session_namespace_for_event_dispatch, |
| 283 area_being_processed_, | 283 area_being_processed_, |
| 284 true /* originatedInProcess */); | 284 true /* originatedInProcess */); |
| 285 } | 285 } |
| 286 } | 286 } |
| OLD | NEW |