Index: chrome/common/extensions/manifest_handlers/content_scripts_handler.cc |
diff --git a/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc b/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc |
index 0041df9dda36a518678d4de72a43c4a85046676c..8ff7ebac3ee1dc04d8a11a49c1d7e7b14dac9052 100644 |
--- a/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc |
+++ b/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc |
@@ -296,7 +296,7 @@ static bool IsScriptValid(const base::FilePath& path, |
int message_id, |
std::string* error) { |
std::string content; |
- if (!file_util::PathExists(path) || |
+ if (!base::PathExists(path) || |
!file_util::ReadFileToString(path, &content)) { |
*error = l10n_util::GetStringFUTF8( |
message_id, |