Index: chrome/common/extensions/manifest_handlers/theme_handler.cc |
diff --git a/chrome/common/extensions/manifest_handlers/theme_handler.cc b/chrome/common/extensions/manifest_handlers/theme_handler.cc |
index 19e2e571c98bc8beffd2dcea1ca407c59c384c17..f5c879919a8cdc300d437d471bc044333c4e9403 100644 |
--- a/chrome/common/extensions/manifest_handlers/theme_handler.cc |
+++ b/chrome/common/extensions/manifest_handlers/theme_handler.cc |
@@ -202,7 +202,7 @@ bool ThemeHandler::Validate(const Extension* extension, |
if (iter.value().GetAsString(&val)) { |
base::FilePath image_path = extension->path().Append( |
base::FilePath::FromUTF8Unsafe(val)); |
- if (!file_util::PathExists(image_path)) { |
+ if (!base::PathExists(image_path)) { |
*error = |
l10n_util::GetStringFUTF8(IDS_EXTENSION_INVALID_IMAGE_PATH, |
image_path.LossyDisplayName()); |