Changeset 69463 in webkit


Ignore:
Timestamp:
Oct 9, 2010 7:15:58 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-09 Eric Uhrhane <ericu@chromium.org>

Reviewed by Andreas Kling.

FileWriter sends write event instead of progress event
https://bugs.webkit.org/show_bug.cgi?id=47454

No new tests; FileWriter tests will be added shortly, but currently
there's no implementation capable of running them.

  • fileapi/FileWriter.cpp: (WebCore::FileWriter::didWrite):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69462 r69463  
     12010-10-09  Eric Uhrhane  <ericu@chromium.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        FileWriter sends write event instead of progress event
     6        https://bugs.webkit.org/show_bug.cgi?id=47454
     7
     8        No new tests; FileWriter tests will be added shortly, but currently
     9        there's no implementation capable of running them.
     10
     11        * fileapi/FileWriter.cpp:
     12        (WebCore::FileWriter::didWrite):
     13
    1142010-10-09  Andreas Kling  <kling@webkit.org>
    215
  • trunk/WebCore/fileapi/FileWriter.cpp

    r69140 r69463  
    168168    if (m_position > m_length)
    169169        m_length = m_position;
    170     fireEvent(eventNames().writeEvent);
     170    fireEvent(eventNames().progressEvent);
    171171    if (complete) {
     172        fireEvent(eventNames().writeEvent);
    172173        m_readyState = DONE;
    173174        fireEvent(eventNames().writeendEvent);
Note: See TracChangeset for help on using the changeset viewer.