Changeset 55612 in webkit


Ignore:
Timestamp:
Mar 5, 2010 11:11:20 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-05 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Eric Seidel.

Enable resource loading callback while loading worker scripts
https://bugs.webkit.org/show_bug.cgi?id=35744

  • workers/WorkerScriptLoader.cpp: (WebCore::WorkerScriptLoader::loadSynchronously): (WebCore::WorkerScriptLoader::loadAsynchronously):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r55611 r55612  
     12010-03-05  Andrey Kosyakov  <caseq@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Enable resource loading callback while loading worker scripts
     6        https://bugs.webkit.org/show_bug.cgi?id=35744
     7
     8        * workers/WorkerScriptLoader.cpp:
     9        (WebCore::WorkerScriptLoader::loadSynchronously):
     10        (WebCore::WorkerScriptLoader::loadAsynchronously):
     11
    1122010-03-05  Chris Fleizach  <cfleizach@apple.com>
    213
  • trunk/WebCore/workers/WorkerScriptLoader.cpp

    r47388 r55612  
    6464    options.allowCredentials = true;
    6565    options.crossOriginRequestPolicy = crossOriginRequestPolicy;
     66    options.sendLoadCallbacks = true;
    6667
    6768    WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(scriptExecutionContext), *request, *this, options);
     
    8182    options.allowCredentials = true;
    8283    options.crossOriginRequestPolicy = crossOriginRequestPolicy;
     84    options.sendLoadCallbacks = true;
    8385
    8486    m_threadableLoader = ThreadableLoader::create(scriptExecutionContext, this, *request, options);
Note: See TracChangeset for help on using the changeset viewer.