diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 20:50:39 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 20:50:39 +0000 |
commit | 40bcc30cf1b2f48a0d371c8e11220d3b5e7b850b (patch) | |
tree | 4cedafb7edbc2670a858446f5acbded0febf6d71 /chrome/browser/dom_ui | |
parent | 8718a105c71a6b81fb1383960dc6df8423201901 (diff) | |
download | chromium_src-40bcc30cf1b2f48a0d371c8e11220d3b5e7b850b.zip chromium_src-40bcc30cf1b2f48a0d371c8e11220d3b5e7b850b.tar.gz chromium_src-40bcc30cf1b2f48a0d371c8e11220d3b5e7b850b.tar.bz2 |
Fix compilations errors introduced by revision 10712.
TBR=deanm
Review URL: http://codereview.chromium.org/27347
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10721 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui')
-rw-r--r-- | chrome/browser/dom_ui/new_tab_ui.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/dom_ui/new_tab_ui.cc b/chrome/browser/dom_ui/new_tab_ui.cc index 764fd36..afb7baa 100644 --- a/chrome/browser/dom_ui/new_tab_ui.cc +++ b/chrome/browser/dom_ui/new_tab_ui.cc @@ -66,7 +66,8 @@ namespace { // messages and wait for the page to stop repainting. class PaintTimer : public RenderWidgetHost::PaintObserver { public: - PaintTimer() : method_factory_(this) { + PaintTimer() + : ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) { Start(); } |