blob: 5f5249992d4f759b30804179a91151c8d170dfe1 [file] [log] [blame]
[email protected]14ce83f2009-05-28 18:35:241// Copyright (c) 2009 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
5#include "chrome/browser/browser_process.h"
6
[email protected]dcccb942009-02-01 18:23:007#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
8
[email protected]b3c6b7f2009-06-19 19:33:159BrowserProcess* g_browser_process = NULL;
10
[email protected]41291322010-07-15 17:09:0111DownloadRequestLimiter* BrowserProcess::download_request_limiter() {
[email protected]dcccb942009-02-01 18:23:0012 ResourceDispatcherHost* rdh = resource_dispatcher_host();
[email protected]41291322010-07-15 17:09:0113 return rdh ? rdh->download_request_limiter() : NULL;
[email protected]dcccb942009-02-01 18:23:0014}