Changeset 68931 in webkit


Ignore:
Timestamp:
Oct 1, 2010 3:09:45 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

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

Reviewed by Nate Chapin.

Add v8 binding helpers to make FileWriter be an EventTarget.
https://bugs.webkit.org/show_bug.cgi?id=46910

No new tests; still waiting for the first complete implementation.

  • bindings/v8/V8DOMWrapper.cpp: (WebCore::V8DOMWrapper::convertEventTargetToV8Object):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r68926 r68931  
     12010-10-01  Eric Uhrhane  <ericu@chromium.org>
     2
     3        Reviewed by Nate Chapin.
     4
     5        Add v8 binding helpers to make FileWriter be an EventTarget.
     6        https://bugs.webkit.org/show_bug.cgi?id=46910
     7
     8        No new tests; still waiting for the first complete implementation.
     9
     10        * bindings/v8/V8DOMWrapper.cpp:
     11        (WebCore::V8DOMWrapper::convertEventTargetToV8Object):
     12
    1132010-10-01  David Hyatt  <hyatt@apple.com>
    214
  • trunk/WebCore/bindings/v8/V8DOMWrapper.cpp

    r67324 r68931  
    4949#include "V8EventSource.h"
    5050#include "V8FileReader.h"
     51#include "V8FileWriter.h"
    5152#include "V8HTMLCollection.h"
    5253#include "V8HTMLDocument.h"
     
    429430#endif
    430431
     432#if ENABLE(FILE_SYSTEM)
     433    if (FileWriter* fileWriter = target->toFileWriter())
     434        return toV8(fileWriter);
     435#endif
     436
    431437    ASSERT(0);
    432438    return notHandledByInterceptor();
Note: See TracChangeset for help on using the changeset viewer.