Changeset 111618 in webkit


Ignore:
Timestamp:
Mar 21, 2012 4:18:20 PM (12 years ago)
Author:
eric@webkit.org
Message:

Fix remaining WTF includes in JavaScriptCore in preparation for moving WTF headers out of JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=81834

Reviewed by Adam Barth.

  • jsc.cpp:
  • os-win32/WinMain.cpp:
  • runtime/JSDateMath.cpp:
  • runtime/TimeoutChecker.cpp:
  • testRegExp.cpp:
  • tools/CodeProfiling.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r111617 r111618  
     12012-03-21  Eric Seidel  <eric@webkit.org>
     2
     3        Fix remaining WTF includes in JavaScriptCore in preparation for moving WTF headers out of JavaScriptCore
     4        https://bugs.webkit.org/show_bug.cgi?id=81834
     5
     6        Reviewed by Adam Barth.
     7
     8        * jsc.cpp:
     9        * os-win32/WinMain.cpp:
     10        * runtime/JSDateMath.cpp:
     11        * runtime/TimeoutChecker.cpp:
     12        * testRegExp.cpp:
     13        * tools/CodeProfiling.cpp:
     14
    1152012-03-21  Eric Seidel  <eric@webkit.org>
    216
  • trunk/Source/JavaScriptCore/jsc.cpp

    r111129 r111618  
    2525#include "BytecodeGenerator.h"
    2626#include "Completion.h"
    27 #include "CurrentTime.h"
     27#include <wtf/CurrentTime.h>
    2828#include "ExceptionHelpers.h"
    2929#include "InitializeThreading.h"
  • trunk/Source/JavaScriptCore/os-win32/WinMain.cpp

    r95901 r111618  
    2020
    2121#include "config.h"
    22 #include "Vector.h"
     22#include <wtf/Vector.h>
    2323#include <winbase.h>
    2424#include <winnls.h>
  • trunk/Source/JavaScriptCore/runtime/JSDateMath.cpp

    r110033 r111618  
    7373#include "JSDateMath.h"
    7474
    75 #include "CurrentTime.h"
    7675#include "JSObject.h"
    77 #include "MathExtras.h"
    7876#include "ScopeChain.h"
    79 #include "StdLibExtras.h"
    80 #include "StringExtras.h"
    8177
    8278#include <algorithm>
     
    8783#include <wtf/ASCIICType.h>
    8884#include <wtf/Assertions.h>
     85#include <wtf/CurrentTime.h>
     86#include <wtf/MathExtras.h>
     87#include <wtf/StdLibExtras.h>
     88#include <wtf/StringExtras.h>
    8989#include <wtf/text/StringBuilder.h>
    9090
  • trunk/Source/JavaScriptCore/runtime/TimeoutChecker.cpp

    r99997 r111618  
    3939#include <windows.h>
    4040#else
    41 #include "CurrentTime.h"
     41#include <wtf/CurrentTime.h>
    4242#endif
    4343
  • trunk/Source/JavaScriptCore/testRegExp.cpp

    r103243 r111618  
    2222#include "RegExp.h"
    2323
    24 #include "CurrentTime.h"
     24#include <wtf/CurrentTime.h>
    2525#include "InitializeThreading.h"
    2626#include "JSGlobalObject.h"
  • trunk/Source/JavaScriptCore/tools/CodeProfiling.cpp

    r108037 r111618  
    2828
    2929#include "CodeProfile.h"
    30 #include "MetaAllocator.h"
     30#include <wtf/MetaAllocator.h>
    3131
    3232#if HAVE(SIGNAL_H)
Note: See TracChangeset for help on using the changeset viewer.