| Index: content/browser/indexed_db/indexed_db_context_impl.cc | 
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc | 
| index dbc041f2e71fa9e4796e74746e72a86b9af2e040..4b3342e45386386b5ad9601128e9cf8d5ad2cf04 100644 | 
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc | 
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc | 
| @@ -18,6 +18,7 @@ | 
| #include "base/strings/utf_string_conversions.h" | 
| #include "base/threading/thread_restrictions.h" | 
| #include "base/time/time.h" | 
| +#include "base/trace_event/trace_event.h" | 
| #include "base/values.h" | 
| #include "content/browser/browser_main_loop.h" | 
| #include "content/browser/indexed_db/indexed_db_connection.h" | 
| @@ -597,6 +598,10 @@ void IndexedDBContextImpl::QueryAvailableQuota(const GURL& origin_url) { | 
| DCHECK_CURRENTLY_ON(BrowserThread::IO); | 
| if (!quota_manager_proxy() || !quota_manager_proxy()->quota_manager()) | 
| return; | 
| + | 
| +  // crbug.com/349708 | 
| +  TRACE_EVENT0("io", "IndexedDBContextImpl::QueryAvailableQuota"); | 
| + | 
| quota_manager_proxy()->quota_manager()->GetUsageAndQuota( | 
| origin_url, | 
| storage::kStorageTypeTemporary, | 
|  |