Index: chrome_frame/test_utils.cc |
diff --git a/chrome_frame/test_utils.cc b/chrome_frame/test_utils.cc |
index 0b9989667940deee0ee03fd70ecd01bfdc26aaff..a4737327722d3ca8d95e74e27e7e63e52f2b1572 100644 |
--- a/chrome_frame/test_utils.cc |
+++ b/chrome_frame/test_utils.cc |
@@ -36,12 +36,12 @@ base::FilePath GetChromeFrameBuildPath() { |
base::FilePath dll_path = build_path.Append(kChromeFrameDllName); |
- if (!file_util::PathExists(dll_path)) { |
+ if (!base::PathExists(dll_path)) { |
// Well, dang.. try looking in the current directory. |
dll_path = build_path.Append(kChromeFrameDllName); |
} |
- if (!file_util::PathExists(dll_path)) { |
+ if (!base::PathExists(dll_path)) { |
// No luck, return something empty. |
dll_path = base::FilePath(); |
} |