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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp

Issue 1810843002: DevTools: split protocol Dispatcher into Backend interface and the dispatcher itself. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
index 18029fec01e748967d2a6cc588cd24835215fb9a..2aa395ab776ed87b40501536c998250f524ed2c7 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseClient.cpp
@@ -61,7 +61,7 @@ const char* DatabaseClient::supplementName()
return "DatabaseClient";
}
-void DatabaseClient::didOpenDatabase(Database* database, const String& domain, const String& name, const String& version)
+void DatabaseClient::didOpenDatabase(blink::Database* database, const String& domain, const String& name, const String& version)
{
if (m_inspectorAgent)
m_inspectorAgent->didOpenDatabase(database, domain, name, version);

Powered by Google App Engine
This is Rietveld 408576698