From f5a3b5e6ca259992f9a7d38181bade92ba8cc69d Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 21 Dec 2016 16:31:45 -0700 Subject: [PATCH] Humanify the ghostdoc comments (#1897) A little touchup to better explain some of the event handlers. --- CefSharp.Wpf/ChromiumWebBrowser.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/CefSharp.Wpf/ChromiumWebBrowser.cs b/CefSharp.Wpf/ChromiumWebBrowser.cs index 7f38a225fa..c2441701f4 100644 --- a/CefSharp.Wpf/ChromiumWebBrowser.cs +++ b/CefSharp.Wpf/ChromiumWebBrowser.cs @@ -1599,13 +1599,14 @@ private Popup CreatePopup() } /// - /// Sources the hook. + /// WindowProc callback interceptor. Handles Windows messages intended for the source hWnd, and passes them to the + /// contained browser as needed. /// - /// The hWnd. + /// The source handle. /// The message. - /// The w parameter. - /// The l parameter. - /// if set to true [handled]. + /// Additional message info. + /// Even more message info. + /// if set to true, the event has already been handled by someone else. /// IntPtr. protected virtual IntPtr SourceHook(IntPtr hWnd, int message, IntPtr wParam, IntPtr lParam, ref bool handled) { @@ -1849,7 +1850,7 @@ protected override void OnMouseWheel(MouseWheelEventArgs e) } /// - /// Popups the mouse enter. + /// Handle the mouse cursor entering the pop-up. /// /// The sender. /// The instance containing the event data. @@ -1860,7 +1861,7 @@ private void PopupMouseEnter(object sender, MouseEventArgs e) } /// - /// Popups the mouse leave. + /// Handle the mouse cursor exiting the pop-up. /// /// The sender. /// The instance containing the event data. @@ -1982,7 +1983,7 @@ private void ZoomOut() } /// - /// Zooms the browser reset. + /// Reset the browser's zoom level to default. /// private void ZoomReset() {