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

Unified Diff: webkit/support/test_webidbfactory.h

Issue 14156007: Remove WebSecurityOrigin from chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/indexed_db/proxy_webidbfactory_impl.cc ('k') | webkit/support/test_webidbfactory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webidbfactory.h
diff --git a/webkit/support/test_webidbfactory.h b/webkit/support/test_webidbfactory.h
index e7b02b0767bbeb5e6ec5339b70b8986db2082b63..508d7a0155b977b99e17557927cd824ed1122c2a 100644
--- a/webkit/support/test_webidbfactory.h
+++ b/webkit/support/test_webidbfactory.h
@@ -18,22 +18,19 @@ class TestWebIDBFactory : public WebKit::WebIDBFactory {
virtual ~TestWebIDBFactory();
// WebIDBFactory methods:
- virtual void getDatabaseNames(WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebSecurityOrigin& origin,
- WebKit::WebFrame* frame,
+ virtual void getDatabaseNames(WebKit::WebIDBCallbacks*,
+ const WebKit::WebString& database_identifier,
const WebKit::WebString& data_dir);
virtual void open(const WebKit::WebString& name,
long long version,
long long transaction_id,
- WebKit::WebIDBCallbacks* callbacks,
- WebKit::WebIDBDatabaseCallbacks* database_callbacks,
- const WebKit::WebSecurityOrigin& origin,
- WebKit::WebFrame* frame,
+ WebKit::WebIDBCallbacks*,
+ WebKit::WebIDBDatabaseCallbacks*,
+ const WebKit::WebString& database_identifier,
const WebKit::WebString& data_dir);
virtual void deleteDatabase(const WebKit::WebString& name,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebSecurityOrigin& origin,
- WebKit::WebFrame* frame,
+ WebKit::WebIDBCallbacks*,
+ const WebKit::WebString& database_identifier,
const WebKit::WebString& data_dir);
private:
« no previous file with comments | « content/common/indexed_db/proxy_webidbfactory_impl.cc ('k') | webkit/support/test_webidbfactory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698