Title: [111618] trunk/Source/_javascript_Core
Revision
111618
Author
[email protected]
Date
2012-03-21 16:18:20 -0700 (Wed, 21 Mar 2012)

Log Message

Fix remaining WTF includes in _javascript_Core in preparation for moving WTF headers out of _javascript_Core
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:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (111617 => 111618)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-21 23:18:20 UTC (rev 111618)
@@ -1,5 +1,19 @@
 2012-03-21  Eric Seidel  <[email protected]>
 
+        Fix remaining WTF includes in _javascript_Core in preparation for moving WTF headers out of _javascript_Core
+        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:
+
+2012-03-21  Eric Seidel  <[email protected]>
+
         WTF::MetaAllocator has a weak vtable (discovered when building wtf as a static library)
         https://bugs.webkit.org/show_bug.cgi?id=81838
 

Modified: trunk/Source/_javascript_Core/jsc.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/jsc.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/jsc.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -24,7 +24,7 @@
 
 #include "BytecodeGenerator.h"
 #include "Completion.h"
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
 #include "ExceptionHelpers.h"
 #include "InitializeThreading.h"
 #include "Interpreter.h"

Modified: trunk/Source/_javascript_Core/os-win32/WinMain.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/os-win32/WinMain.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/os-win32/WinMain.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -19,7 +19,7 @@
  */
 
 #include "config.h"
-#include "Vector.h"
+#include <wtf/Vector.h>
 #include <winbase.h>
 #include <winnls.h>
 #include <wtf/UnusedParam.h>

Modified: trunk/Source/_javascript_Core/runtime/JSDateMath.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/runtime/JSDateMath.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/runtime/JSDateMath.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -72,12 +72,8 @@
 #include "config.h"
 #include "JSDateMath.h"
 
-#include "CurrentTime.h"
 #include "JSObject.h"
-#include "MathExtras.h"
 #include "ScopeChain.h"
-#include "StdLibExtras.h"
-#include "StringExtras.h"
 
 #include <algorithm>
 #include <limits.h>
@@ -86,6 +82,10 @@
 #include <time.h>
 #include <wtf/ASCIICType.h>
 #include <wtf/Assertions.h>
+#include <wtf/CurrentTime.h>
+#include <wtf/MathExtras.h>
+#include <wtf/StdLibExtras.h>
+#include <wtf/StringExtras.h>
 #include <wtf/text/StringBuilder.h>
 
 #if HAVE(ERRNO_H)

Modified: trunk/Source/_javascript_Core/runtime/TimeoutChecker.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/runtime/TimeoutChecker.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/runtime/TimeoutChecker.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -38,7 +38,7 @@
 #elif OS(WINDOWS)
 #include <windows.h>
 #else
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
 #endif
 
 using namespace std;

Modified: trunk/Source/_javascript_Core/testRegExp.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/testRegExp.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/testRegExp.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -21,7 +21,7 @@
 #include "config.h"
 #include "RegExp.h"
 
-#include "CurrentTime.h"
+#include <wtf/CurrentTime.h>
 #include "InitializeThreading.h"
 #include "JSGlobalObject.h"
 #include "UStringBuilder.h"

Modified: trunk/Source/_javascript_Core/tools/CodeProfiling.cpp (111617 => 111618)


--- trunk/Source/_javascript_Core/tools/CodeProfiling.cpp	2012-03-21 23:16:40 UTC (rev 111617)
+++ trunk/Source/_javascript_Core/tools/CodeProfiling.cpp	2012-03-21 23:18:20 UTC (rev 111618)
@@ -27,7 +27,7 @@
 #include "CodeProfiling.h"
 
 #include "CodeProfile.h"
-#include "MetaAllocator.h"
+#include <wtf/MetaAllocator.h>
 
 #if HAVE(SIGNAL_H)
 #include <signal.h>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to