Title: [110512] trunk/Source/WebKit2
Revision
110512
Author
[email protected]
Date
2012-03-12 17:31:25 -0700 (Mon, 12 Mar 2012)

Log Message

Fix typo in PageClientImpl where we were overriding viewLayerHostingMode with
a function called layerHostingMode.

Reviewed by Anders Carlsson.

* UIProcess/API/mac/PageClientImpl.h:
* UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::viewLayerHostingMode):
Update name and add OVERRIDE to catch this in the future.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (110511 => 110512)


--- trunk/Source/WebKit2/ChangeLog	2012-03-13 00:22:38 UTC (rev 110511)
+++ trunk/Source/WebKit2/ChangeLog	2012-03-13 00:31:25 UTC (rev 110512)
@@ -1,3 +1,15 @@
+2012-03-12  Sam Weinig  <[email protected]>
+
+        Fix typo in PageClientImpl where we were overriding viewLayerHostingMode with
+        a function called layerHostingMode.
+
+        Reviewed by Anders Carlsson.
+
+        * UIProcess/API/mac/PageClientImpl.h:
+        * UIProcess/API/mac/PageClientImpl.mm:
+        (WebKit::PageClientImpl::viewLayerHostingMode):
+        Update name and add OVERRIDE to catch this in the future.
+
 2012-03-12  Enrica Casucci  <[email protected]>
 
         WebKit2: remove NSPasteboard access for promised data from the WebProcess

Modified: trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h (110511 => 110512)


--- trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h	2012-03-13 00:22:38 UTC (rev 110511)
+++ trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h	2012-03-13 00:31:25 UTC (rev 110512)
@@ -55,7 +55,7 @@
     virtual bool isViewFocused();
     virtual bool isViewVisible();
     virtual bool isViewInWindow();
-    virtual LayerHostingMode layerHostingMode();
+    virtual LayerHostingMode viewLayerHostingMode() OVERRIDE;
 
     virtual void processDidCrash();
     virtual void pageClosed();

Modified: trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm (110511 => 110512)


--- trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm	2012-03-13 00:22:38 UTC (rev 110511)
+++ trunk/Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm	2012-03-13 00:31:25 UTC (rev 110512)
@@ -193,7 +193,7 @@
     return [m_wkView window];
 }
 
-LayerHostingMode PageClientImpl::layerHostingMode()
+LayerHostingMode PageClientImpl::viewLayerHostingMode()
 {
 #if HAVE(LAYER_HOSTING_IN_WINDOW_SERVER)
     if (![m_wkView window])
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to