From 2bde8e466a4451c7319e3a072d118917957d6554 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Wed, 25 May 2011 19:08:45 +0100 Subject: Merge WebKit at r82507: Initial merge by git Change-Id: I60ce9d780725b58b45e54165733a8ffee23b683e --- Source/WebCore/inspector/InspectorDatabaseAgent.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Source/WebCore/inspector/InspectorDatabaseAgent.h') diff --git a/Source/WebCore/inspector/InspectorDatabaseAgent.h b/Source/WebCore/inspector/InspectorDatabaseAgent.h index 7e42211..45fbfa4 100644 --- a/Source/WebCore/inspector/InspectorDatabaseAgent.h +++ b/Source/WebCore/inspector/InspectorDatabaseAgent.h @@ -59,17 +59,17 @@ public: void clearResources(); // Called from the front-end. - void getDatabaseTableNames(ErrorString* error, long databaseId, RefPtr* names); - void executeSQL(ErrorString* error, long databaseId, const String& query, bool* success, long* transactionId); + void getDatabaseTableNames(ErrorString*, int databaseId, RefPtr* names); + void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transactionId); // Called from the injected script. - long databaseId(Database*); + int databaseId(Database*); void didOpenDatabase(PassRefPtr, const String& domain, const String& name, const String& version); private: explicit InspectorDatabaseAgent(InstrumentingAgents*); - Database* databaseForId(long databaseId); + Database* databaseForId(int databaseId); InstrumentingAgents* m_instrumentingAgents; typedef HashMap > DatabaseResourcesMap; -- cgit v1.1