Chromium Code Reviews| Index: content/browser/web_contents/web_contents_view_aura.h |
| diff --git a/content/browser/web_contents/web_contents_view_aura.h b/content/browser/web_contents/web_contents_view_aura.h |
| index 94c29164c87878ddbabfc8503e016384117b5cfa..a1df00bde2b07cdd916883f9665f0e9f11ee9e9c 100644 |
| --- a/content/browser/web_contents/web_contents_view_aura.h |
| +++ b/content/browser/web_contents/web_contents_view_aura.h |
| @@ -138,6 +138,12 @@ class CONTENT_EXPORT WebContentsViewAura |
| content::WebDragDestDelegate* drag_dest_delegate_; |
| + // We keep track of the render view host we're dragging over. If it changes |
| + // during a drag, we need to re-send the DragEnter message. WARNING: |
| + // this pointer should never be dereferenced. We only use it for comparing |
| + // pointers. |
| + content::RenderViewHost* current_rvh_for_drag_; |
|
sky
2012/05/14 13:57:15
Can you make this a void*?
varunjain
2012/05/14 17:31:07
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(WebContentsViewAura); |
| }; |