Changeset 255431 in webkit


Ignore:
Timestamp:
Jan 30, 2020 9:35:20 AM (4 years ago)
Author:
Chris Dumez
Message:

REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily
https://bugs.webkit.org/show_bug.cgi?id=206291
<rdar://problem/58606666>

Unreviewed, partial rollout of r252064 which seems to have introduced the regression.

No new tests, covered by existing test

  • Modules/webdatabase/SQLTransaction.cpp:

(WebCore::SQLTransaction::notifyDatabaseThreadIsShuttingDown):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r255425 r255431  
     12020-01-30  Chris Dumez  <cdumez@apple.com>
     2
     3        REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily
     4        https://bugs.webkit.org/show_bug.cgi?id=206291
     5        <rdar://problem/58606666>
     6
     7        Unreviewed, partial rollout of r252064 which seems to have introduced the regression.
     8
     9        No new tests, covered by existing test
     10
     11        * Modules/webdatabase/SQLTransaction.cpp:
     12        (WebCore::SQLTransaction::notifyDatabaseThreadIsShuttingDown):
     13
    1142020-01-30  Joonghun Park  <jh718.park@samsung.com>
    215
  • trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp

    r255329 r255431  
    128128void SQLTransaction::notifyDatabaseThreadIsShuttingDown()
    129129{
    130     callOnMainThread([this, protectedThis = makeRef(*this)]() mutable {
    131         callErrorCallbackDueToInterruption();
    132     });
    133 
    134130    m_backend.notifyDatabaseThreadIsShuttingDown();
    135131}
Note: See TracChangeset for help on using the changeset viewer.