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

Unified Diff: chrome/browser/ui/webui/nacl_ui.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/browser/ui/webui/nacl_ui.cc
diff --git a/chrome/browser/ui/webui/nacl_ui.cc b/chrome/browser/ui/webui/nacl_ui.cc
index d8da413a982e68be7de0c718dc2eb62459508846..744d9cf99a4b2ea47329bcf8caa4eeb429defe87 100644
--- a/chrome/browser/ui/webui/nacl_ui.cc
+++ b/chrome/browser/ui/webui/nacl_ui.cc
@@ -162,7 +162,7 @@ void NaClDomHandlerProxy::ValidatePnaclPath() {
// However, do not trust that the path returned by the PathService exists.
// Check for existence here.
ValidatePnaclPathCallback(
- got_path && !pnacl_path.empty() && file_util::PathExists(pnacl_path));
+ got_path && !pnacl_path.empty() && base::PathExists(pnacl_path));
}
void NaClDomHandlerProxy::ValidatePnaclPathCallback(bool is_valid) {
« no previous file with comments | « chrome/browser/ui/web_applications/web_app_ui.cc ('k') | chrome/browser/ui/webui/options/advanced_options_utils_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698