Chromium Code Reviews

Unified Diff: Source/modules/webdatabase/DatabaseClient.h

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/webdatabase/DatabaseClient.h
diff --git a/Source/modules/webdatabase/DatabaseClient.h b/Source/modules/webdatabase/DatabaseClient.h
index d27a6a2a722ff35b912b20c0bb49ada8c2569fc1..3462d1d7d06cf190d3397896f3467a55d6ccfdd7 100644
--- a/Source/modules/webdatabase/DatabaseClient.h
+++ b/Source/modules/webdatabase/DatabaseClient.h
@@ -61,7 +61,7 @@ private:
InspectorDatabaseAgent* m_inspectorAgent;
};
-void provideDatabaseClientTo(Page*, PassOwnPtr<DatabaseClient>);
+void provideDatabaseClientTo(Page&, PassOwnPtr<DatabaseClient>);
void provideDatabaseClientToWorker(WorkerClients*, PassOwnPtr<DatabaseClient>);
} // namespace WebCore

Powered by Google App Engine