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

Unified Diff: chrome/browser/extensions/test_extension_dir.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/extensions/test_extension_dir.cc
diff --git a/chrome/browser/extensions/test_extension_dir.cc b/chrome/browser/extensions/test_extension_dir.cc
index 9c1ed76eb39a6975fbf5a781dec159988801f45d..039fbe88770e1ae69910010facb5aebc9873ba38 100644
--- a/chrome/browser/extensions/test_extension_dir.cc
+++ b/chrome/browser/extensions/test_extension_dir.cc
@@ -45,7 +45,7 @@ base::FilePath TestExtensionDir::Pack() {
base::FilePath pem_path =
crx_dir_.path().Append(FILE_PATH_LITERAL("ext.pem"));
base::FilePath pem_in_path, pem_out_path;
- if (file_util::PathExists(pem_path))
+ if (base::PathExists(pem_path))
pem_in_path = pem_path;
else
pem_out_path = pem_path;
@@ -58,7 +58,7 @@ base::FilePath TestExtensionDir::Pack() {
<< "ExtensionCreator::Run() failed: " << creator.error_message();
return base::FilePath();
}
- if (!file_util::PathExists(crx_path)) {
+ if (!base::PathExists(crx_path)) {
ADD_FAILURE() << crx_path.value() << " was not created.";
return base::FilePath();
}
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker_unittest.cc ('k') | chrome/browser/extensions/user_script_listener_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698