Title: [139930] trunk/Source/WebCore
Revision
139930
Author
benja...@webkit.org
Date
2013-01-16 15:15:35 -0800 (Wed, 16 Jan 2013)

Log Message

Force a rebuild of RenderObject

Unreviewed. One bot is using old object file. Change RenderObject.cpp to force it
to build the file again.

Patch by Benjamin Poulain <bpoul...@apple.com> on 2013-01-16

* rendering/RenderObject.cpp:
(WebCore::addLayers):
(WebCore::RenderObject::findNextLayer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139929 => 139930)


--- trunk/Source/WebCore/ChangeLog	2013-01-16 23:11:07 UTC (rev 139929)
+++ trunk/Source/WebCore/ChangeLog	2013-01-16 23:15:35 UTC (rev 139930)
@@ -1,3 +1,14 @@
+2013-01-16  Benjamin Poulain  <bpoul...@apple.com>
+
+        Force a rebuild of RenderObject
+
+        Unreviewed. One bot is using old object file. Change RenderObject.cpp to force it
+        to build the file again.
+
+        * rendering/RenderObject.cpp:
+        (WebCore::addLayers):
+        (WebCore::RenderObject::findNextLayer):
+
 2013-01-16  Joshua Bell  <jsb...@chromium.org>
 
         IndexedDB: Possible null ScriptExecutionContext passed to callbacks during frame destruction

Modified: trunk/Source/WebCore/rendering/RenderObject.cpp (139929 => 139930)


--- trunk/Source/WebCore/rendering/RenderObject.cpp	2013-01-16 23:11:07 UTC (rev 139929)
+++ trunk/Source/WebCore/rendering/RenderObject.cpp	2013-01-16 23:15:35 UTC (rev 139930)
@@ -446,7 +446,7 @@
 {
     if (obj->hasLayer()) {
         if (!beforeChild && newObject) {
-            // We need to figure out the layer that follows newObject.  We only do
+            // We need to figure out the layer that follows newObject. We only do
             // this the first time we find a child layer, and then we update the
             // pointer values for newObject and beforeChild used by everyone else.
             beforeChild = newObject->parent()->findNextLayer(parentLayer, newObject);
@@ -505,7 +505,7 @@
 RenderLayer* RenderObject::findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint,
                                          bool checkParent)
 {
-    // Error check the parent layer passed in.  If it's null, we can't find anything.
+    // Error check the parent layer passed in. If it's null, we can't find anything.
     if (!parentLayer)
         return 0;
 
@@ -525,7 +525,7 @@
         }
     }
 
-    // Step 3: If our layer is the desired parent layer, then we're finished.  We didn't
+    // Step 3: If our layer is the desired parent layer, then we're finished. We didn't
     // find anything.
     if (parentLayer == ourLayer)
         return 0;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to