diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 00:22:09 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 00:22:09 +0000 |
commit | 23948b94c876ea6bdc5682a95ce9c8e344aff4c8 (patch) | |
tree | 61da3c15c6a19b0cc9e0c25a5a8758eb5bb766c4 /views/view.h | |
parent | 9a05b75028274c6178930613b8f396a2e982d26b (diff) | |
download | chromium_src-23948b94c876ea6bdc5682a95ce9c8e344aff4c8.zip chromium_src-23948b94c876ea6bdc5682a95ce9c8e344aff4c8.tar.gz chromium_src-23948b94c876ea6bdc5682a95ce9c8e344aff4c8.tar.bz2 |
views: Make |focusable_| a private data member instead of a protected one.
BUG=72040
TEST=None
R=ben@chromium.org
Review URL: http://codereview.chromium.org/7020040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87555 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view.h')
-rw-r--r-- | views/view.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/view.h b/views/view.h index cb3545c..016d74e 100644 --- a/views/view.h +++ b/views/view.h @@ -1053,9 +1053,6 @@ class View : public AcceleratorTarget { void Focus(); void Blur(); - // Whether the view can be focused. - bool focusable_; - // System events ------------------------------------------------------------- // Called when the UI theme has changed, overriding allows individual Views to @@ -1412,6 +1409,9 @@ class View : public AcceleratorTarget { // Next view to be focused when the Shift-Tab key combination is pressed. View* previous_focusable_view_; + // Whether this view can be focused. + bool focusable_; + // Whether this view is focusable if the user requires full keyboard access, // even though it may not be normally focusable. bool accessibility_focusable_; |