Diff
Modified: trunk/Source/WebCore/ChangeLog (124932 => 124933)
--- trunk/Source/WebCore/ChangeLog 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/ChangeLog 2012-08-07 23:13:28 UTC (rev 124933)
@@ -1,5 +1,55 @@
2012-08-07 Kentaro Hara <[email protected]>
+ [V8] Remove #include V8BindingMacros.h
+ https://bugs.webkit.org/show_bug.cgi?id=93312
+
+ Reviewed by Eric Seidel.
+
+ We are factoring out V8Binding methods to separate files.
+ After the refactoring, V8Binding.h will include binding related
+ header files (e.g. V8BindingMacros.h, V8BindingHelper.h, etc), so that
+ custom V8 binding files just need to include V8Binding.h only.
+
+ We can remove '#include V8BindingMacros.h' from V8 binding files.
+
+ No tests. No change in behavior.
+
+ * bindings/scripts/CodeGeneratorV8.pm:
+ (GenerateNormalAttrSetter):
+ (GenerateParametersCheck):
+ (GenerateEventConstructorCallback):
+ (ConvertToV8Parameter):
+ * bindings/scripts/test/V8/V8Float64Array.cpp:
+ * bindings/scripts/test/V8/V8TestActiveDOMObject.cpp:
+ * bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp:
+ * bindings/scripts/test/V8/V8TestEventConstructor.cpp:
+ * bindings/scripts/test/V8/V8TestEventTarget.cpp:
+ * bindings/scripts/test/V8/V8TestInterface.cpp:
+ * bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp:
+ * bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
+ * bindings/scripts/test/V8/V8TestObj.cpp:
+ * bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
+ * bindings/v8/ScriptController.cpp:
+ * bindings/v8/custom/V8BlobCustom.cpp:
+ * bindings/v8/custom/V8ConsoleCustom.cpp:
+ * bindings/v8/custom/V8DOMWindowCustom.cpp:
+ * bindings/v8/custom/V8DataViewCustom.cpp:
+ * bindings/v8/custom/V8DeviceMotionEventCustom.cpp:
+ * bindings/v8/custom/V8DeviceOrientationEventCustom.cpp:
+ * bindings/v8/custom/V8DirectoryEntryCustom.cpp:
+ * bindings/v8/custom/V8DirectoryEntrySyncCustom.cpp:
+ * bindings/v8/custom/V8IntentConstructor.cpp:
+ * bindings/v8/custom/V8MutationObserverCustom.cpp:
+ * bindings/v8/custom/V8PerformanceCustom.cpp:
+ * bindings/v8/custom/V8SQLTransactionCustom.cpp:
+ * bindings/v8/custom/V8SQLTransactionSyncCustom.cpp:
+ * bindings/v8/custom/V8SVGLengthCustom.cpp:
+ * bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
+ * bindings/v8/custom/V8WebKitAnimationCustom.cpp:
+ * bindings/v8/custom/V8WorkerContextCustom.cpp:
+
+2012-08-07 Kentaro Hara <[email protected]>
+
[V8] Remove #include Frame.h from V8Binding.h
https://bugs.webkit.org/show_bug.cgi?id=93326
Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm 2012-08-07 23:13:28 UTC (rev 124933)
@@ -1115,8 +1115,6 @@
my $implClassName = shift;
my $interfaceName = shift;
- AddToImplIncludes("V8BindingMacros.h");
-
my $attrName = $attribute->signature->name;
my $attrExt = $attribute->signature->extendedAttributes;
@@ -1739,7 +1737,6 @@
my $value = JSValueToNative($parameter, "MAYBE_MISSING_PARAMETER(args, $paramIndex, $parameterDefaultPolicy)", "args.GetIsolate()");
$parameterCheckString .= " " . ConvertToV8Parameter($parameter, $nativeType, $parameterName, $value) . "\n";
} else {
- AddToImplIncludes("V8BindingMacros.h");
# If the "StrictTypeChecking" extended attribute is present, and the argument's type is an
# interface type, then if the incoming value does not implement that interface, a TypeError
# is thrown rather than silently passing NULL to the C++ code.
@@ -1878,7 +1875,6 @@
my $implClassName = shift;
AddToImplIncludes("Dictionary.h");
- AddToImplIncludes("V8BindingMacros.h");
push(@implContent, <<END);
v8::Handle<v8::Value> V8${implClassName}::constructorCallback(const v8::Arguments& args)
{
@@ -4161,7 +4157,6 @@
die "Wrong native type passed: $nativeType" unless $nativeType =~ /^V8Parameter/;
if ($signature->type eq "DOMString") {
- AddToImplIncludes("V8BindingMacros.h");
my $macro = "STRING_TO_V8PARAMETER_EXCEPTION_BLOCK";
$macro .= "_$suffix" if $suffix;
return "$macro($nativeType, $variableName, $value);"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -27,7 +27,6 @@
#include "RuntimeEnabledFeatures.h"
#include "V8ArrayBufferView.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8Float32Array.h"
#include "V8Int32Array.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -27,7 +27,6 @@
#include "Frame.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Node.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -26,7 +26,6 @@
#include "ExceptionCode.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -26,7 +26,6 @@
#include "Dictionary.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -26,7 +26,6 @@
#include "ExceptionCode.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Collection.h"
#include "V8DOMWrapper.h"
#include "V8Event.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -29,7 +29,6 @@
#include "RuntimeEnabledFeatures.h"
#include "TestSupplemental.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Node.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -27,7 +27,6 @@
#include "MediaQueryListListener.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -27,7 +27,6 @@
#include "Frame.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -38,7 +38,6 @@
#include "ScriptProfile.h"
#include "SerializedScriptValue.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMStringList.h"
#include "V8DOMWrapper.h"
#include "V8Document.h"
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -30,7 +30,6 @@
#include "RuntimeEnabledFeatures.h"
#include "SerializedScriptValue.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#include "V8MessagePort.h"
Modified: trunk/Source/WebCore/bindings/v8/ScriptController.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/ScriptController.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/ScriptController.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -55,7 +55,6 @@
#include "Settings.h"
#include "UserGestureIndicator.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWindow.h"
#include "V8Event.h"
#include "V8HiddenPropertyName.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -35,7 +35,6 @@
#include "V8ArrayBuffer.h"
#include "V8ArrayBufferView.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Blob.h"
#include "V8File.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -37,7 +37,6 @@
#include "ScriptCallStack.h"
#include "ScriptCallStackFactory.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8MemoryInfo.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -56,7 +56,6 @@
#include "SharedWorkerRepository.h"
#include "Storage.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8EventListener.h"
#include "V8GCForContextDispose.h"
#include "V8HiddenPropertyName.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DataViewCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DataViewCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DataViewCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -28,7 +28,6 @@
#include "V8ArrayBufferViewCustom.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DataView.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DeviceMotionEventCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DeviceMotionEventCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DeviceMotionEventCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -30,7 +30,6 @@
#include "DeviceMotionData.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Proxy.h"
#include <v8.h>
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -30,7 +30,6 @@
#include "DeviceOrientationData.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Proxy.h"
#include <v8.h>
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntryCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntryCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntryCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -36,7 +36,6 @@
#include "DirectoryEntry.h"
#include "ExceptionCode.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8EntryCallback.h"
#include "V8ErrorCallback.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntrySyncCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntrySyncCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8DirectoryEntrySyncCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -36,7 +36,6 @@
#include "DirectoryEntrySync.h"
#include "ExceptionCode.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8EntryCallback.h"
#include "V8ErrorCallback.h"
#include "V8FileEntrySync.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8IntentConstructor.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8IntentConstructor.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8IntentConstructor.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -34,7 +34,6 @@
#include "SerializedScriptValue.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8Intent.h"
#include "V8MessagePort.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8MutationObserverCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8MutationObserverCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8MutationObserverCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -37,7 +37,6 @@
#include "ExceptionCode.h"
#include "MutationObserver.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8DOMWrapper.h"
#include "V8MutationCallback.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8PerformanceCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8PerformanceCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8PerformanceCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -36,7 +36,6 @@
#include "Performance.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8MemoryInfo.h"
namespace WebCore {
Modified: trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -38,7 +38,6 @@
#include "ExceptionCode.h"
#include "SQLValue.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8SQLStatementCallback.h"
#include "V8SQLStatementErrorCallback.h"
#include "V8Proxy.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -39,7 +39,6 @@
#include "SQLResultSet.h"
#include "SQLValue.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Proxy.h"
#include "V8SQLResultSet.h"
#include <wtf/Vector.h>
Modified: trunk/Source/WebCore/bindings/v8/custom/V8SVGLengthCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8SVGLengthCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8SVGLengthCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -37,7 +37,6 @@
#include "SVGLengthContext.h"
#include "SVGPropertyTearOff.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
namespace WebCore {
Modified: trunk/Source/WebCore/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -38,7 +38,6 @@
#include "NotImplemented.h"
#include "V8ArrayBufferView.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8EXTTextureFilterAnisotropic.h"
#include "V8Float32Array.h"
#include "V8HTMLCanvasElement.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8WebKitAnimationCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8WebKitAnimationCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8WebKitAnimationCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -27,7 +27,6 @@
#include "V8WebKitAnimation.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Proxy.h"
#include "WebKitAnimation.h"
Modified: trunk/Source/WebCore/bindings/v8/custom/V8WorkerContextCustom.cpp (124932 => 124933)
--- trunk/Source/WebCore/bindings/v8/custom/V8WorkerContextCustom.cpp 2012-08-07 22:58:34 UTC (rev 124932)
+++ trunk/Source/WebCore/bindings/v8/custom/V8WorkerContextCustom.cpp 2012-08-07 23:13:28 UTC (rev 124933)
@@ -37,7 +37,6 @@
#include "ExceptionCode.h"
#include "ScheduledAction.h"
#include "V8Binding.h"
-#include "V8BindingMacros.h"
#include "V8Proxy.h"
#include "V8Utilities.h"
#include "V8WorkerContextEventListener.h"