| Index: chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc
|
| diff --git a/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc b/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc
|
| index 1e0ab13a662f7a3c3310e4be0836770e49eea278..bfa07235c69babdf65f1d56321bdc5e68179f16e 100644
|
| --- a/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc
|
| +++ b/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc
|
| @@ -8,6 +8,7 @@
|
| #include <string>
|
|
|
| #include "base/bind.h"
|
| +#include "base/trace_event/trace_event.h"
|
| #include "chrome/browser/ui/webui/quota_internals/quota_internals_handler.h"
|
| #include "chrome/browser/ui/webui/quota_internals/quota_internals_types.h"
|
| #include "net/base/net_util.h"
|
| @@ -23,6 +24,9 @@ QuotaInternalsProxy::QuotaInternalsProxy(QuotaInternalsHandler* handler)
|
|
|
| void QuotaInternalsProxy::RequestInfo(
|
| scoped_refptr<storage::QuotaManager> quota_manager) {
|
| + // crbug.com/349708
|
| + TRACE_EVENT0("io", "QuotaInternalsProxy::RequestInfo");
|
| +
|
| DCHECK(quota_manager.get());
|
| if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) {
|
| BrowserThread::PostTask(
|
|
|