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

Unified Diff: remoting/host/pairing_registry_delegate_linux.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: remoting/host/pairing_registry_delegate_linux.cc
diff --git a/remoting/host/pairing_registry_delegate_linux.cc b/remoting/host/pairing_registry_delegate_linux.cc
index c8c09e7edf4642871e9e9a2ab5b4964a0412c7e9..9b6b3d4817c5b31b3667f5abd3e46f2a2e167449 100644
--- a/remoting/host/pairing_registry_delegate_linux.cc
+++ b/remoting/host/pairing_registry_delegate_linux.cc
@@ -109,7 +109,7 @@ bool PairingRegistryDelegateLinux::Save(
const PairingRegistry::Pairing& pairing) {
base::FilePath registry_path = GetRegistryPath();
base::PlatformFileError error;
- if (!file_util::CreateDirectoryAndGetError(registry_path, &error)) {
+ if (!base::CreateDirectoryAndGetError(registry_path, &error)) {
LOG(ERROR) << "Could not create pairing registry directory: " << error;
return false;
}
« no previous file with comments | « net/url_request/url_fetcher_impl_unittest.cc ('k') | remoting/host/setup/daemon_controller_delegate_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698