Index: chrome/browser/memory_details.cc |
diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc |
index 878462d84ec8136a642b84ca823edb9b23e2eb88..479f520c258d4d714343389e32fe26d75d66825a 100644 |
--- a/chrome/browser/memory_details.cc |
+++ b/chrome/browser/memory_details.cc |
@@ -381,11 +381,12 @@ 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; |
} |
} |