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

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

Issue 15937016: Update refernces to Blink's Platform API (webkit) (Closed) Base URL: svn://svn.chromium.org/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
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/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/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/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
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 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/mock_webclipboard_impl.cc ('k') | webkit/tools/test_shell/simple_file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698