Skip to content

Commit f716845

Browse files
author
Dumitru Daniliuc
committed
Unreviewed, fixing a build problem introduced by the previous patch.
* storage/DatabaseSync.cpp: (WebCore::DatabaseSync::openDatabaseSync): Canonical link: https://commits.webkit.org/49709@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@58440 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent d740aec commit f716845

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

WebCore/ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2010-04-28 Dumitru Daniliuc <dumi@chromium.org>
2+
3+
Unreviewed, fixing a build problem introduced by the previous patch.
4+
5+
* storage/DatabaseSync.cpp:
6+
(WebCore::DatabaseSync::openDatabaseSync):
7+
18
2010-04-23 Dumitru Daniliuc <dumi@chromium.org>
29

310
Reviewed by Jeremy Orlow.

WebCore/storage/DatabaseSync.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ bool DatabaseSync::isAvailable()
5858
return isSyncDatabaseAvailable;
5959
}
6060

61-
PassRefPtr<DatabaseSync> DatabaseSync::openDatabaseSync(ScriptExecutionContext* context, const String&, const String&, const String&,
61+
PassRefPtr<DatabaseSync> DatabaseSync::openDatabaseSync(ScriptExecutionContext*, const String&, const String&, const String&,
6262
unsigned long, PassRefPtr<DatabaseCallback>, ExceptionCode& ec)
6363
{
64-
ASSERT(context->isContextThread());
64+
// FIXME: uncomment the assert once we use the ScriptExecutionContext* parameter
65+
//ASSERT(context->isContextThread());
6566

6667
ec = SECURITY_ERR;
6768
return 0;

0 commit comments

Comments
 (0)