Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: webkit/tools/test_shell/simple_dom_storage_system.cc

Issue 15990007: Move dom_storage to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/tools/test_shell/simple_dom_storage_system.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/simple_dom_storage_system.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698