| Index: chrome/browser/ui/webui/quota_internals_handler.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/quota_internals_handler.cc (revision 122721)
|
| +++ chrome/browser/ui/webui/quota_internals_handler.cc (working copy)
|
| @@ -15,6 +15,8 @@
|
| #include "content/public/browser/web_ui.h"
|
| #include "net/base/net_util.h"
|
|
|
| +using content::BrowserContext;
|
| +
|
| namespace quota_internals {
|
|
|
| QuotaInternalsHandler::QuotaInternalsHandler() {}
|
| @@ -84,7 +86,8 @@
|
| void QuotaInternalsHandler::OnRequestInfo(const base::ListValue*) {
|
| if (!proxy_)
|
| proxy_ = new QuotaInternalsProxy(this);
|
| - proxy_->RequestInfo(Profile::FromWebUI(web_ui())->GetQuotaManager());
|
| + proxy_->RequestInfo(
|
| + content::BrowserContext::GetQuotaManager(Profile::FromWebUI(web_ui())));
|
| }
|
|
|
| } // namespace quota_internals
|
|
|