Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2715)

Unified Diff: chrome/common/extensions/api/plugins/plugins_handler.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/plugins/plugins_handler.cc
diff --git a/chrome/common/extensions/api/plugins/plugins_handler.cc b/chrome/common/extensions/api/plugins/plugins_handler.cc
index b918c5ee2c3a0ba2bf6511834ceaeddd766f9e93..d8decf6bccddb25df10ec336228778850ad0ecb9 100644
--- a/chrome/common/extensions/api/plugins/plugins_handler.cc
+++ b/chrome/common/extensions/api/plugins/plugins_handler.cc
@@ -136,7 +136,7 @@ bool PluginsHandler::Validate(const Extension* extension,
for (std::vector<extensions::PluginInfo>::const_iterator plugin =
plugins->begin();
plugin != plugins->end(); ++plugin) {
- if (!file_util::PathExists(plugin->path)) {
+ if (!base::PathExists(plugin->path)) {
*error = l10n_util::GetStringFUTF8(
IDS_EXTENSION_LOAD_PLUGIN_PATH_FAILED,
plugin->path.LossyDisplayName());
« no previous file with comments | « chrome/common/extensions/api/i18n/default_locale_handler.cc ('k') | chrome/common/extensions/background_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698