Index: chrome/app/delay_load_hook_win.cc |
diff --git a/chrome/app/delay_load_hook_win.cc b/chrome/app/delay_load_hook_win.cc |
index e81407cf0c394606c73f488708497276d4016f05..6afac884ac5e27e452acb34ab82e07ba9ba39dc5 100644 |
--- a/chrome/app/delay_load_hook_win.cc |
+++ b/chrome/app/delay_load_hook_win.cc |
@@ -28,7 +28,7 @@ FARPROC OnPreLoadLibrary(DelayLoadInfo* info) { |
// and bind to the real DLL. |
std::string dll_name(info->szDll); |
const char kDelaySuffix[] = "-delay.dll"; |
- if (EndsWith(dll_name, kDelaySuffix, false)) { |
+ if (base::EndsWith(dll_name, kDelaySuffix, false)) { |
// Trim the "-delay.dll" suffix from the string. |
dll_name.resize(dll_name.length() - (sizeof(kDelaySuffix) - 1)); |
dll_name.append(".dll"); |