Title: [239972] trunk/Source/WebKit
Revision
239972
Author
[email protected]
Date
2019-01-14 20:03:28 -0800 (Mon, 14 Jan 2019)

Log Message

Fix a style mistake in PageClientImplMac

* UIProcess/mac/PageClientImplMac.h:
Somehow these methods ended up above the members.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (239971 => 239972)


--- trunk/Source/WebKit/ChangeLog	2019-01-15 03:31:41 UTC (rev 239971)
+++ trunk/Source/WebKit/ChangeLog	2019-01-15 04:03:28 UTC (rev 239972)
@@ -1,3 +1,10 @@
+2019-01-14  Tim Horton  <[email protected]>
+
+        Fix a style mistake in PageClientImplMac
+
+        * UIProcess/mac/PageClientImplMac.h:
+        Somehow these methods ended up above the members.
+
 2019-01-14  Per Arne Vollan  <[email protected]>
 
         [macOS] Remove reporting for mach lookups confirmed in-use

Modified: trunk/Source/WebKit/UIProcess/mac/PageClientImplMac.h (239971 => 239972)


--- trunk/Source/WebKit/UIProcess/mac/PageClientImplMac.h	2019-01-15 03:31:41 UTC (rev 239971)
+++ trunk/Source/WebKit/UIProcess/mac/PageClientImplMac.h	2019-01-15 04:03:28 UTC (rev 239972)
@@ -252,6 +252,16 @@
 
     void didFinishProcessingAllPendingMouseEvents() final;
 
+#if ENABLE(WIRELESS_PLAYBACK_TARGET)
+    WebCore::WebMediaSessionManager& mediaSessionManager() override;
+#endif
+
+    void refView() override;
+    void derefView() override;
+
+    void didRestoreScrollPosition() override;
+    bool windowIsFrontWindowUnderMouse(const NativeWebMouseEvent&) override;
+
     NSView *m_view;
     WeakPtr<WebViewImpl> m_impl;
 #if USE(AUTOCORRECTION_PANEL)
@@ -262,16 +272,6 @@
 #endif
 
     bool m_shouldSuppressFirstResponderChanges { false };
-
-#if ENABLE(WIRELESS_PLAYBACK_TARGET)
-    WebCore::WebMediaSessionManager& mediaSessionManager() override;
-#endif
-
-    void refView() override;
-    void derefView() override;
-
-    void didRestoreScrollPosition() override;
-    bool windowIsFrontWindowUnderMouse(const NativeWebMouseEvent&) override;
 };
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to