Title: [106698] trunk/Source/WebCore
Revision
106698
Author
kl...@webkit.org
Date
2012-02-03 15:03:53 -0800 (Fri, 03 Feb 2012)

Log Message

Unreviewed build fix attempt after r106695.

CSSMutableStyleDeclaration was renamed to StylePropertySet.

* bindings/scripts/CodeGeneratorCPP.pm:
(AddIncludesForType):
* bindings/scripts/CodeGeneratorV8.pm:
(AddIncludesForType):
* bindings/v8/V8DOMWindowShell.cpp:
* bindings/v8/V8DOMWrapper.cpp:
* bindings/v8/V8Proxy.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106697 => 106698)


--- trunk/Source/WebCore/ChangeLog	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/ChangeLog	2012-02-03 23:03:53 UTC (rev 106698)
@@ -1,3 +1,17 @@
+2012-02-03  Andreas Kling  <awesomekl...@apple.com>
+
+        Unreviewed build fix attempt after r106695.
+
+        CSSMutableStyleDeclaration was renamed to StylePropertySet.
+
+        * bindings/scripts/CodeGeneratorCPP.pm:
+        (AddIncludesForType):
+        * bindings/scripts/CodeGeneratorV8.pm:
+        (AddIncludesForType):
+        * bindings/v8/V8DOMWindowShell.cpp:
+        * bindings/v8/V8DOMWrapper.cpp:
+        * bindings/v8/V8Proxy.cpp:
+
 2012-02-03  Yong Li  <y...@rim.com>
 
         [BlackBerry] Let userIdleTime() return maximum number instead of 0 as

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm (106697 => 106698)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm	2012-02-03 23:03:53 UTC (rev 106698)
@@ -296,7 +296,7 @@
     }
 
     $implIncludes{"Node.h"} = 1 if $type eq "NodeList";
-    $implIncludes{"CSSMutableStyleDeclaration.h"} = 1 if $type eq "CSSStyleDeclaration";
+    $implIncludes{"StylePropertySet.h"} = 1 if $type eq "CSSStyleDeclaration";
 
     # Default, include the same named file (the implementation) and the same name prefixed with "WebDOM". 
     $implIncludes{"$type.h"} = 1 unless $type eq "DOMObject";

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (106697 => 106698)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2012-02-03 23:03:53 UTC (rev 106698)
@@ -172,7 +172,7 @@
     }
 
     if ($type eq "CSSStyleDeclaration") {
-        AddToImplIncludes("CSSMutableStyleDeclaration.h");
+        AddToImplIncludes("StylePropertySet.h");
     }
 
     if ($type eq "Plugin" or $type eq "PluginArray" or $type eq "MimeTypeArray") {

Modified: trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp (106697 => 106698)


--- trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2012-02-03 23:03:53 UTC (rev 106698)
@@ -32,7 +32,6 @@
 #include "V8DOMWindowShell.h"
 
 #include "PlatformSupport.h"
-#include "CSSMutableStyleDeclaration.h"
 #include "DateExtension.h"
 #include "DocumentLoader.h"
 #include "Frame.h"
@@ -45,6 +44,7 @@
 #include "ScriptProfiler.h"
 #include "SecurityOrigin.h"
 #include "StorageNamespace.h"
+#include "StylePropertySet.h"
 #include "V8Binding.h"
 #include "V8BindingState.h"
 #include "V8Collection.h"

Modified: trunk/Source/WebCore/bindings/v8/V8DOMWrapper.cpp (106697 => 106698)


--- trunk/Source/WebCore/bindings/v8/V8DOMWrapper.cpp	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/bindings/v8/V8DOMWrapper.cpp	2012-02-03 23:03:53 UTC (rev 106698)
@@ -32,12 +32,12 @@
 #include "V8DOMWrapper.h"
 
 #include "ArrayBufferView.h"
-#include "CSSMutableStyleDeclaration.h"
 #include "DOMDataStore.h"
 #include "DocumentLoader.h"
 #include "EventTargetHeaders.h"
 #include "EventTargetInterfaces.h"
 #include "FrameLoaderClient.h"
+#include "StylePropertySet.h"
 #include "V8AbstractEventListener.h"
 #include "V8Binding.h"
 #include "V8Collection.h"

Modified: trunk/Source/WebCore/bindings/v8/V8Proxy.cpp (106697 => 106698)


--- trunk/Source/WebCore/bindings/v8/V8Proxy.cpp	2012-02-03 22:52:10 UTC (rev 106697)
+++ trunk/Source/WebCore/bindings/v8/V8Proxy.cpp	2012-02-03 23:03:53 UTC (rev 106698)
@@ -31,7 +31,6 @@
 #include "config.h"
 #include "V8Proxy.h"
 
-#include "CSSMutableStyleDeclaration.h"
 #include "CachedMetadata.h"
 #include "DateExtension.h"
 #include "Document.h"
@@ -48,6 +47,7 @@
 #include "ScriptSourceCode.h"
 #include "SecurityOrigin.h"
 #include "Settings.h"
+#include "StylePropertySet.h"
 #include "V8Binding.h"
 #include "V8BindingState.h"
 #include "V8Collection.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to