summaryrefslogtreecommitdiffstats
path: root/ash/system/chromeos
diff options
context:
space:
mode:
authormohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-16 14:07:19 +0000
committermohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-16 14:07:19 +0000
commit505df7b9b280d3acfa9fa66094d6a5906fa6e743 (patch)
treee0f3b4ca8e03699e7e388130a12d4aa2b0691e88 /ash/system/chromeos
parent71de10ee5b06eacf9ee72db449c15967878054b6 (diff)
downloadchromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.zip
chromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.tar.gz
chromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.tar.bz2
Rename View::set_focusable and View::set_accessibility_focusable
These functions are renamed to SetFocusable and SetAccessibilityFocusable, respectively, as a first step to add some functionality to them later. Later the view should give up focus if it has become unfocusable. BUG=323956 Review URL: https://codereview.chromium.org/103493005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system/chromeos')
-rw-r--r--ash/system/chromeos/audio/tray_audio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/chromeos/audio/tray_audio.cc b/ash/system/chromeos/audio/tray_audio.cc
index 3d77ed1..7d26fc6 100644
--- a/ash/system/chromeos/audio/tray_audio.cc
+++ b/ash/system/chromeos/audio/tray_audio.cc
@@ -206,7 +206,7 @@ class VolumeView : public ActionableView,
device_type_(NULL),
more_(NULL),
is_default_view_(is_default_view) {
- set_focusable(false);
+ SetFocusable(false);
SetLayoutManager(new views::BoxLayout(views::BoxLayout::kHorizontal,
kTrayPopupPaddingHorizontal, 0, kTrayPopupPaddingBetweenItems));