Changeset 156127 in webkit


Ignore:
Timestamp:
Sep 19, 2013 4:02:38 PM (11 years ago)
Author:
dbates@webkit.org
Message:

Substitute return type void for bool in function declaration for WTF::initializeWebThread()

Reviewed by Joseph Pecoraro.

Make the declaration of WTF::initializeWebThread() match the function prototype
of its definition.

  • wtf/MainThread.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r156117 r156127  
     12013-09-19  Daniel Bates  <dabates@apple.com>
     2
     3        Substitute return type void for bool in function declaration for WTF::initializeWebThread()
     4
     5        Reviewed by Joseph Pecoraro.
     6
     7        Make the declaration of WTF::initializeWebThread() match the function prototype
     8        of its definition.
     9
     10        * wtf/MainThread.h:
     11
    1122013-09-19  Andreas Kling  <akling@apple.com>
    213
  • trunk/Source/WTF/wtf/MainThread.h

    r155926 r156127  
    5555WTF_EXPORT_PRIVATE bool isWebThread();
    5656WTF_EXPORT_PRIVATE bool isUIThread();
    57 WTF_EXPORT_PRIVATE bool initializeWebThread();
     57WTF_EXPORT_PRIVATE void initializeWebThread();
    5858WTF_EXPORT_PRIVATE void initializeApplicationUIThreadIdentifier();
    5959WTF_EXPORT_PRIVATE void initializeWebThreadIdentifier();
Note: See TracChangeset for help on using the changeset viewer.