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

Unified Diff: content/browser/indexed_db/indexed_db_factory_impl.h

Issue 1832553002: IndexedDB: Pass url::Origin rather than GURL over IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@origin-wdb
Patch Set: Rebased Created 4 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
Index: content/browser/indexed_db/indexed_db_factory_impl.h
diff --git a/content/browser/indexed_db/indexed_db_factory_impl.h b/content/browser/indexed_db/indexed_db_factory_impl.h
index b8a8d1a98ce97e6141eb7e568b6fe2199e4d290f..e1e3b237bb925b0b379a128e73ac9b98075fae20 100644
--- a/content/browser/indexed_db/indexed_db_factory_impl.h
+++ b/content/browser/indexed_db/indexed_db_factory_impl.h
@@ -28,19 +28,19 @@ class CONTENT_EXPORT IndexedDBFactoryImpl : public IndexedDBFactory {
bool forced_close) override;
void GetDatabaseNames(scoped_refptr<IndexedDBCallbacks> callbacks,
- const GURL& origin_url,
+ const url::Origin& origin,
const base::FilePath& data_directory,
net::URLRequestContext* request_context) override;
void Open(const base::string16& name,
const IndexedDBPendingConnection& connection,
net::URLRequestContext* request_context,
- const GURL& origin_url,
+ const url::Origin& origin,
const base::FilePath& data_directory) override;
void DeleteDatabase(const base::string16& name,
net::URLRequestContext* request_context,
scoped_refptr<IndexedDBCallbacks> callbacks,
- const GURL& origin_url,
+ const url::Origin& origin,
const base::FilePath& data_directory) override;
void HandleBackingStoreFailure(const GURL& origin_url) override;

Powered by Google App Engine
This is Rietveld 408576698