From 723e5877e9d0e591f4630b14a58d423a31cd9e92 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 23 Aug 2011 16:04:40 +0000 Subject: [PATCH] Mac: Add missing canceled_ variable to WebDropTarget. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@280 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef/web_drop_target_mac.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libcef/web_drop_target_mac.h b/libcef/web_drop_target_mac.h index cc94f4472..b2b562dc7 100644 --- a/libcef/web_drop_target_mac.h +++ b/libcef/web_drop_target_mac.h @@ -24,6 +24,9 @@ class WebViewHost; // Keep track of the WebViewHost we're dragging over. If it changes during a // drag, we need to re-send the DragEnter message. WebViewHost* current_wvh_; + + // True if the drag has been canceled. + bool canceled_; } // |view| is the WebView representing this browser window, used to communicate