diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 05:31:14 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 05:31:14 +0000 |
commit | 3b635b90a75381f0eaceef35bfc9535232f31d3f (patch) | |
tree | c1f21c6f4545e6996046fa38ef03e628fad3a78b /ui/views/widget/root_view.cc | |
parent | 80f8c9505f45871df3533b327d2c64ee9a246d45 (diff) | |
download | chromium_src-3b635b90a75381f0eaceef35bfc9535232f31d3f.zip chromium_src-3b635b90a75381f0eaceef35bfc9535232f31d3f.tar.gz chromium_src-3b635b90a75381f0eaceef35bfc9535232f31d3f.tar.bz2 |
ui: Remove usage of ALLOW_THIS_IN_INITIALIZER_LIST macro.
See discussion in chromium-dev mailing list:
https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/2EdybzAxSu8
The consensul was to remove it as it hasn't been providing us much value.
BUG=234765
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14271017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196051 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/widget/root_view.cc')
-rw-r--r-- | ui/views/widget/root_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/widget/root_view.cc b/ui/views/widget/root_view.cc index 0d3d0d3..671aeb0 100644 --- a/ui/views/widget/root_view.cc +++ b/ui/views/widget/root_view.cc @@ -66,7 +66,7 @@ RootView::RootView(Widget* widget) touch_pressed_handler_(NULL), gesture_handler_(NULL), scroll_gesture_handler_(NULL), - ALLOW_THIS_IN_INITIALIZER_LIST(focus_search_(this, false, false)), + focus_search_(this, false, false), focus_traversable_parent_(NULL), focus_traversable_parent_view_(NULL), event_dispatch_target_(NULL) { |