| Index: chrome/browser/memory_details.cc
|
| diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
|
| index 3aacec55c3427adf83ea0ca22f0b3e41c5278e3a..60c6b47516bbd611ff9e970ec1aeb3177235f91c 100644
|
| --- a/chrome/browser/memory_details.cc
|
| +++ b/chrome/browser/memory_details.cc
|
| @@ -70,8 +70,9 @@ ProcessData& ProcessData::operator=(const ProcessData& rhs) {
|
| // expensive parts of this operation over on the file thread.
|
| //
|
| void MemoryDetails::StartFetch() {
|
| + // This might get called from the UI or FILE threads, but should not be
|
| + // getting called from the IO thread.
|
| DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| - DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
|
|
| // In order to process this request, we need to use the plugin information.
|
| // However, plugin process information is only available from the IO thread.
|
|
|