diff options
author | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 18:49:58 +0000 |
---|---|---|
committer | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 18:49:58 +0000 |
commit | 6aa4a1c041ca9bd2c3087c3c059a87193b1a82e1 (patch) | |
tree | 8e833c393312e866250077c15bc1d90464fe99d7 /base/base_drop_target.h | |
parent | 963dfb5a05c5b0e3fa8ed74d803f01cb10fd455e (diff) | |
download | chromium_src-6aa4a1c041ca9bd2c3087c3c059a87193b1a82e1.zip chromium_src-6aa4a1c041ca9bd2c3087c3c059a87193b1a82e1.tar.gz chromium_src-6aa4a1c041ca9bd2c3087c3c059a87193b1a82e1.tar.bz2 |
Support dragging a virtual file out of the browser.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/351029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_drop_target.h')
-rw-r--r-- | base/base_drop_target.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/base/base_drop_target.h b/base/base_drop_target.h index cf63be28..8be0d36 100644 --- a/base/base_drop_target.h +++ b/base/base_drop_target.h @@ -26,12 +26,13 @@ class BaseDropTarget : public IDropTarget { explicit BaseDropTarget(HWND hwnd); virtual ~BaseDropTarget(); - // When suspend is set to |true|, the drop target does not receive drops from - // drags initiated within the owning HWND. + // When suspended is set to |true|, the drop target does not receive drops + // from drags initiated within the owning HWND. // TODO(beng): (http://b/1085385) figure out how we will handle legitimate // drag-drop operations within the same HWND, such as dragging // selected text to an edit field. - void set_suspend(bool suspend) { suspend_ = suspend; } + bool suspended() const { return suspended_; } + void set_suspended(bool suspended) { suspended_ = suspended; } // IDropTarget implementation: HRESULT __stdcall DragEnter(IDataObject* data_object, @@ -120,7 +121,7 @@ class BaseDropTarget : public IDropTarget { // Whether or not we are currently processing drag notifications for drags // initiated in this window. - bool suspend_; + bool suspended_; LONG ref_count_; |