Changeset 271383 in webkit


Ignore:
Timestamp:
Jan 11, 2021 3:30:27 PM (3 years ago)
Author:
achristensen@apple.com
Message:

Use sendWithAsyncReply instead of dataCallback for icon loading
https://bugs.webkit.org/show_bug.cgi?id=220381

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::stopLoading):
Use the original version of the patch that didn't break WK1 tests.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r271382 r271383  
     12021-01-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Use sendWithAsyncReply instead of dataCallback for icon loading
     4        https://bugs.webkit.org/show_bug.cgi?id=220381
     5
     6        * loader/DocumentLoader.cpp:
     7        (WebCore::DocumentLoader::stopLoading):
     8        Use the original version of the patch that didn't break WK1 tests.
     9
    1102021-01-11  Julian Gonzalez  <julian_a_gonzalez@apple.com>
    211
  • trunk/Source/WebCore/loader/DocumentLoader.cpp

    r271378 r271383  
    324324    }
    325325
    326     for (auto& callback : std::exchange(m_iconLoaders, { }).values())
     326    for (auto& callback : m_iconLoaders.values())
    327327        callback(nullptr);
     328    m_iconLoaders.clear();
    328329    m_iconsPendingLoadDecision.clear();
    329330   
Note: See TracChangeset for help on using the changeset viewer.