Pass the Document's domain to InspectorController:didOpenDatabase. This matches
what the Inspector shows for other resources.
* storage/Database.cpp:
(WebCore::Database::openDatabase):
* dom/Document.h: Remove KURL.h, no longer needed.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@27174
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-10-28 Timothy Hatcher <timothy@apple.com>
+
+ Reviewed by Adam.
+
+ Pass the Document's domain to InspectorController:didOpenDatabase. This matches
+ what the Inspector shows for other resources.
+
+ * storage/Database.cpp:
+ (WebCore::Database::openDatabase):
+
+ * dom/Document.h: Remove KURL.h, no longer needed.
+
2007-10-28 Timothy Hatcher <timothy@apple.com>
Reviewed by Adam.
#include "DocumentMarker.h"
#include "HTMLCollection.h"
#include "HTMLFormElement.h"
-#include "KURL.h"
#include "SecurityOrigin.h"
#include "StringHash.h"
#include "Timer.h"
}
if (Page* page = document->frame()->page())
- page->inspectorController()->didOpenDatabase(database.get(), document->securityOrigin().toString(), name, expectedVersion);
+ page->inspectorController()->didOpenDatabase(database.get(), document->domain(), name, expectedVersion);
return database;
}