Title: [154930] trunk/Source/WebKit2
Revision
154930
Author
[email protected]
Date
2013-08-31 08:18:34 -0700 (Sat, 31 Aug 2013)

Log Message

Remove unused variable in LayerTreeHost
https://bugs.webkit.org/show_bug.cgi?id=118950

Patch by Jae Hyun Park <[email protected]> on 2013-08-31
Reviewed by Anders Carlsson.

m_waitingForUIProcess has been renamed to m_isWaitingForRenderer as of
r152183, and it is a private variable in CoordinatedLayerTreeHost. Thus,
we don't need m_waitingForUIProcess in LayerTreeHost.

* WebProcess/WebPage/LayerTreeHost.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (154929 => 154930)


--- trunk/Source/WebKit2/ChangeLog	2013-08-31 14:14:23 UTC (rev 154929)
+++ trunk/Source/WebKit2/ChangeLog	2013-08-31 15:18:34 UTC (rev 154930)
@@ -1,3 +1,16 @@
+2013-08-31  Jae Hyun Park  <[email protected]>
+
+        Remove unused variable in LayerTreeHost
+        https://bugs.webkit.org/show_bug.cgi?id=118950
+
+        Reviewed by Anders Carlsson.
+
+        m_waitingForUIProcess has been renamed to m_isWaitingForRenderer as of
+        r152183, and it is a private variable in CoordinatedLayerTreeHost. Thus,
+        we don't need m_waitingForUIProcess in LayerTreeHost.
+
+        * WebProcess/WebPage/LayerTreeHost.h:
+
 2013-08-30  Brian Holt  <[email protected]>
 
         [GTK] [WK2] TestWebKitWebView snapshot fails

Modified: trunk/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h (154929 => 154930)


--- trunk/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h	2013-08-31 14:14:23 UTC (rev 154929)
+++ trunk/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h	2013-08-31 15:18:34 UTC (rev 154930)
@@ -101,10 +101,6 @@
     explicit LayerTreeHost(WebPage*);
 
     WebPage* m_webPage;
-
-#if USE(COORDINATED_GRAPHICS)
-    bool m_waitingForUIProcess;
-#endif
 };
 
 inline bool LayerTreeHost::supportsAcceleratedCompositing()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to