diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 23:07:00 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 23:07:00 +0000 |
commit | 3984b4b1edee2b14b0ebd41d31fc9fedfc7a0ef9 (patch) | |
tree | 3ce2aba0fd25d8b37d61e58ae437107594f36d39 /views/controls/message_box_view.h | |
parent | 894b4a7c7323f0132f3a9611cfb71fa7eed223ad (diff) | |
download | chromium_src-3984b4b1edee2b14b0ebd41d31fc9fedfc7a0ef9.zip chromium_src-3984b4b1edee2b14b0ebd41d31fc9fedfc7a0ef9.tar.gz chromium_src-3984b4b1edee2b14b0ebd41d31fc9fedfc7a0ef9.tar.bz2 |
Lands http://codereview.chromium.org/449003/show for Thiago:
views: replace the deprecated macro (DISALLOW_EVIL_CONSTRUCTORS).
Use DISALLOW_COPY_AND_ASSIGN instead, also fix some style issues
pointed by lint.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/449075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/message_box_view.h')
-rw-r--r-- | views/controls/message_box_view.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/controls/message_box_view.h b/views/controls/message_box_view.h index c34e904..71809b5 100644 --- a/views/controls/message_box_view.h +++ b/views/controls/message_box_view.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ -#define VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ +#ifndef VIEWS_CONTROLS_MESSAGE_BOX_VIEW_H_ +#define VIEWS_CONTROLS_MESSAGE_BOX_VIEW_H_ #include <string> @@ -88,7 +88,7 @@ class MessageBoxView : public views::View { ScopedRunnableMethodFactory<MessageBoxView> focus_grabber_factory_; - DISALLOW_EVIL_CONSTRUCTORS(MessageBoxView); + DISALLOW_COPY_AND_ASSIGN(MessageBoxView); }; -#endif // VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ +#endif // VIEWS_CONTROLS_MESSAGE_BOX_VIEW_H_ |