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/renderer_host | |
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/renderer_host')
-rw-r--r-- | chrome/browser/renderer_host/resource_dispatcher_host.cc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/renderer_host/resource_dispatcher_host.cc b/chrome/browser/renderer_host/resource_dispatcher_host.cc index d746201..ba161e4 100644 --- a/chrome/browser/renderer_host/resource_dispatcher_host.cc +++ b/chrome/browser/renderer_host/resource_dispatcher_host.cc @@ -133,15 +133,18 @@ bool ShouldServiceRequest(int render_process_host_id, ResourceDispatcherHost::ResourceDispatcherHost(MessageLoop* io_loop) : ui_loop_(MessageLoop::current()), io_loop_(io_loop), - download_file_manager_(new DownloadFileManager(ui_loop_, this)), + ALLOW_THIS_IN_INITIALIZER_LIST( + download_file_manager_(new DownloadFileManager(ui_loop_, this))), download_request_manager_(new DownloadRequestManager(io_loop, ui_loop_)), - save_file_manager_(new SaveFileManager(ui_loop_, io_loop, this)), + ALLOW_THIS_IN_INITIALIZER_LIST( + save_file_manager_(new SaveFileManager(ui_loop_, io_loop, this))), safe_browsing_(new SafeBrowsingService), request_id_(-1), plugin_service_(PluginService::GetInstance()), - method_runner_(this), + ALLOW_THIS_IN_INITIALIZER_LIST(method_runner_(this)), is_shutdown_(false), - max_outstanding_requests_cost_per_process_(kMaxOutstandingRequestsCostPerProcess) { + max_outstanding_requests_cost_per_process_( + kMaxOutstandingRequestsCostPerProcess) { } ResourceDispatcherHost::~ResourceDispatcherHost() { |