diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-14 00:30:49 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-14 00:30:49 +0000 |
commit | 443b13e9acfda8b1dd19a28a15fa11a6581de7db (patch) | |
tree | df7e0d32a328ca5dbb858fd9a8ecbd39db7d1534 /ui/views/touchui | |
parent | 27a6d4a2a6e75422c06a05df929fcac8c3f828f1 (diff) | |
download | chromium_src-443b13e9acfda8b1dd19a28a15fa11a6581de7db.zip chromium_src-443b13e9acfda8b1dd19a28a15fa11a6581de7db.tar.gz chromium_src-443b13e9acfda8b1dd19a28a15fa11a6581de7db.tar.bz2 |
views: Convert IsVisible() to just visible() since it's just a simple accessor.
BUG=105879
R=ben@chromium.org
TBR=stevenjb@chromium.org
Review URL: http://codereview.chromium.org/8917018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/touchui')
-rw-r--r-- | ui/views/touchui/touch_selection_controller_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/touchui/touch_selection_controller_impl.cc b/ui/views/touchui/touch_selection_controller_impl.cc index 906a605..d2846b8 100644 --- a/ui/views/touchui/touch_selection_controller_impl.cc +++ b/ui/views/touchui/touch_selection_controller_impl.cc @@ -493,11 +493,11 @@ gfx::Point TouchSelectionControllerImpl::GetSelectionHandle2Position() { } bool TouchSelectionControllerImpl::IsSelectionHandle1Visible() { - return selection_handle_1_->IsVisible(); + return selection_handle_1_->visible(); } bool TouchSelectionControllerImpl::IsSelectionHandle2Visible() { - return selection_handle_2_->IsVisible(); + return selection_handle_2_->visible(); } TouchSelectionController* TouchSelectionController::create( |