| Index: chrome/browser/input_window_dialog_win.cc
|
| ===================================================================
|
| --- chrome/browser/input_window_dialog_win.cc (revision 16052)
|
| +++ chrome/browser/input_window_dialog_win.cc (working copy)
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/input_window_dialog.h"
|
|
|
| #include "app/l10n_util.h"
|
| +#include "base/compiler_specific.h"
|
| #include "base/message_loop.h"
|
| #include "base/task.h"
|
| #include "views/grid_layout.h"
|
| @@ -60,7 +61,7 @@
|
| public:
|
| explicit ContentView(WinInputWindowDialog* delegate)
|
| : delegate_(delegate),
|
| - focus_grabber_factory_(this) {
|
| + ALLOW_THIS_IN_INITIALIZER_LIST(focus_grabber_factory_(this)) {
|
| DCHECK(delegate_);
|
| }
|
|
|
|
|