diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-12 12:38:53 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-12 12:38:53 +0000 |
commit | 22a67da241347952e10ecca48c68ffa3992f9e6d (patch) | |
tree | 209742faf477881d66fce2e00ac51734fc5dfcdd /ash/drag_drop | |
parent | b3ea5f0408f3fed24d93d71130b965a093c36743 (diff) | |
download | chromium_src-22a67da241347952e10ecca48c68ffa3992f9e6d.zip chromium_src-22a67da241347952e10ecca48c68ffa3992f9e6d.tar.gz chromium_src-22a67da241347952e10ecca48c68ffa3992f9e6d.tar.bz2 |
views: Have a more accurate name for View parent_owned accessors.
Remove the getter accessor of parent_owned() because it's used only internally by View.
And change the setter accessor from set_parent_owned() to set_owned_by_client().
BUG=122384
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10384068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/drag_drop')
-rw-r--r-- | ash/drag_drop/drag_image_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/drag_drop/drag_image_view.cc b/ash/drag_drop/drag_image_view.cc index 29619605..366e036 100644 --- a/ash/drag_drop/drag_image_view.cc +++ b/ash/drag_drop/drag_image_view.cc @@ -32,7 +32,7 @@ DragImageView::DragImageView() : views::ImageView() { widget_->SetAlwaysOnTop(true); // We are owned by the DragDropController. - set_parent_owned(false); + set_owned_by_client(); } DragImageView::~DragImageView() { |