| Index: chrome/browser/memory_details.cc
|
| diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
|
| index 784cd211bbc2630aa5c59a7f81c6be2d5ecbacf1..c6a7e7c2c0f6520c256e25294d62b563a099d183 100644
|
| --- a/chrome/browser/memory_details.cc
|
| +++ b/chrome/browser/memory_details.cc
|
| @@ -343,11 +343,13 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
|
| const NavigationEntry* last_committed_entry =
|
| contents->GetController().GetLastCommittedEntry();
|
| if ((last_committed_entry &&
|
| - LowerCaseEqualsASCII(last_committed_entry->GetVirtualURL().spec(),
|
| - chrome::kChromeUIMemoryURL)) ||
|
| + base::LowerCaseEqualsASCII(
|
| + last_committed_entry->GetVirtualURL().spec(),
|
| + chrome::kChromeUIMemoryURL)) ||
|
| (pending_entry &&
|
| - LowerCaseEqualsASCII(pending_entry->GetVirtualURL().spec(),
|
| - chrome::kChromeUIMemoryURL))) {
|
| + base::LowerCaseEqualsASCII(
|
| + pending_entry->GetVirtualURL().spec(),
|
| + chrome::kChromeUIMemoryURL))) {
|
| process.is_diagnostics = true;
|
| }
|
| }
|
|
|