Changeset 58156 in webkit


Ignore:
Timestamp:
Apr 23, 2010 12:36:59 AM (14 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/38029> +[WebTextIteratorPrivate initialize] is missing call to JSC::initializeThreading()

Reviewed by Timothy Hatcher.

Every other Objective-C class that calls
WebCoreObjCFinalizeOnMainThread(self) in +initialize also calls
JSC::initializeThreading(). The WebTextIteratorPrivate class
was the only one missing this call.

  • WebView/WebTextIterator.mm:

(+[WebTextIteratorPrivate initialize]): Added call to
JSC::initializeThreading().

Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r58120 r58156  
     12010-04-22  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/38029> +[WebTextIteratorPrivate initialize] is missing call to JSC::initializeThreading()
     4
     5        Reviewed by Timothy Hatcher.
     6
     7        Every other Objective-C class that calls
     8        WebCoreObjCFinalizeOnMainThread(self) in +initialize also calls
     9        JSC::initializeThreading().  The WebTextIteratorPrivate class
     10        was the only one missing this call.
     11
     12        * WebView/WebTextIterator.mm:
     13        (+[WebTextIteratorPrivate initialize]): Added call to
     14        JSC::initializeThreading().
     15
    1162010-04-22  Alexey Proskuryakov  <ap@apple.com>
    217
  • trunk/WebKit/mac/WebView/WebTextIterator.mm

    r43771 r58156  
    3232#import <WebCore/TextIterator.h>
    3333#import <WebCore/WebCoreObjCExtras.h>
     34#import <runtime/InitializeThreading.h>
    3435
    3536using namespace JSC;
     
    4647+ (void)initialize
    4748{
     49    JSC::initializeThreading();
    4850#ifndef BUILDING_ON_TIGER
    4951    WebCoreObjCFinalizeOnMainThread(self);
Note: See TracChangeset for help on using the changeset viewer.