Title: [107946] trunk/Source/WebKit
Revision
107946
Author
commit-qu...@webkit.org
Date
2012-02-16 09:09:49 -0800 (Thu, 16 Feb 2012)

Log Message

[BlackBerry] Style clean-up in WebPageCompositor
https://bugs.webkit.org/show_bug.cgi?id=78738

Patch by Nima Ghanavatian <nghanavat...@rim.com> on 2012-02-16
Reviewed by Rob Buis.

No new functionality, no new tests.

* blackberry/WebKitSupport/WebPageCompositor.cpp:
(BlackBerry::WebKit::WebPageCompositor::drawLayers):
* blackberry/WebKitSupport/WebPageCompositor.h:
(WebKit):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (107945 => 107946)


--- trunk/Source/WebKit/ChangeLog	2012-02-16 17:03:50 UTC (rev 107945)
+++ trunk/Source/WebKit/ChangeLog	2012-02-16 17:09:49 UTC (rev 107946)
@@ -1,3 +1,17 @@
+2012-02-16  Nima Ghanavatian  <nghanavat...@rim.com>
+
+        [BlackBerry] Style clean-up in WebPageCompositor
+        https://bugs.webkit.org/show_bug.cgi?id=78738
+
+        Reviewed by Rob Buis.
+
+        No new functionality, no new tests.
+
+        * blackberry/WebKitSupport/WebPageCompositor.cpp:
+        (BlackBerry::WebKit::WebPageCompositor::drawLayers):
+        * blackberry/WebKitSupport/WebPageCompositor.h:
+        (WebKit):
+
 2012-02-16  Patrick Gansterer  <par...@webkit.org>
 
         [CMake] Add missing include directories.

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.cpp (107945 => 107946)


--- trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.cpp	2012-02-16 17:03:50 UTC (rev 107945)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.cpp	2012-02-16 17:09:49 UTC (rev 107946)
@@ -17,9 +17,10 @@
  */
 
 #include "config.h"
+
+#if USE(ACCELERATED_COMPOSITING)
 #include "WebPageCompositor.h"
 
-#if USE(ACCELERATED_COMPOSITING)
 #include "LayerWebKitThread.h"
 #include "WebPage_p.h"
 
@@ -90,8 +91,8 @@
     m_compositedGeneration = m_generation;
 
     if (m_lastCompositingResults.needsAnimationFrame) {
-        ++m_generation; // The animation update moves us along one generation
-        // Using a timeout of 0 actually won't start a timer, it will send a message
+        ++m_generation; // The animation update moves us along one generation.
+        // Using a timeout of 0 actually won't start a timer, it will send a message.
         m_blitTimer.start(1.0 / 60.0);
         m_webPage->updateDelegatedOverlays();
     }

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.h (107945 => 107946)


--- trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.h	2012-02-16 17:03:50 UTC (rev 107945)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/WebPageCompositor.h	2012-02-16 17:09:49 UTC (rev 107946)
@@ -37,7 +37,7 @@
 
 class WebPagePrivate;
 
-// This class may only be used on the compositing thread
+// This class may only be used on the compositing thread.
 class WebPageCompositor {
 public:
     WebPageCompositor(WebPagePrivate*);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to