diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-11 00:31:32 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-11 00:31:32 +0000 |
commit | 5fe3f3a35f7202855c60543b5e396112a16610ea (patch) | |
tree | 31c1c9a3f79f328fc9b9f378d92a7571d5349750 /views/view.h | |
parent | e0184cbde1634faa300d63c7880b5acf312f45d6 (diff) | |
download | chromium_src-5fe3f3a35f7202855c60543b5e396112a16610ea.zip chromium_src-5fe3f3a35f7202855c60543b5e396112a16610ea.tar.gz chromium_src-5fe3f3a35f7202855c60543b5e396112a16610ea.tar.bz2 |
views: Drop the prefix "is_" from View::is_visible_ member variable.
No other boolean variable in the View class has the "is_" prefix and this is
making me nervous for a while now :)
BUG=72040
TEST=None
R=ben@chromium.org
Review URL: http://codereview.chromium.org/7104098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view.h')
-rw-r--r-- | views/view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/view.h b/views/view.h index d5df2b9..30efeac0 100644 --- a/views/view.h +++ b/views/view.h @@ -1327,7 +1327,7 @@ class View : public AcceleratorTarget { gfx::Rect bounds_; // Whether this view is visible. - bool is_visible_; + bool visible_; // Whether this view is enabled. bool enabled_; |