From 22a67da241347952e10ecca48c68ffa3992f9e6d Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sat, 12 May 2012 12:38:53 +0000 Subject: 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 --- ash/tooltips/tooltip_controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ash/tooltips/tooltip_controller.cc') diff --git a/ash/tooltips/tooltip_controller.cc b/ash/tooltips/tooltip_controller.cc index c1aaa0f..cd1edca 100644 --- a/ash/tooltips/tooltip_controller.cc +++ b/ash/tooltips/tooltip_controller.cc @@ -99,7 +99,7 @@ class TooltipController::Tooltip { views::Border::CreateSolidBorder(kTooltipBorderWidth, kTooltipBorder)); } - label_.set_parent_owned(false); + label_.set_owned_by_client(); widget_.reset(CreateTooltip()); widget_->SetContentsView(&label_); widget_->Activate(); -- cgit v1.1