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

Unified Diff: remoting/host/pairing_registry_delegate_linux.cc

Issue 101143006: Convert base::file_util to use File instead of PlatformFile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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: 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 9b6b3d4817c5b31b3667f5abd3e46f2a2e167449..838edd28e0c10cac2114a20e84752f6a181f1358 100644
--- a/remoting/host/pairing_registry_delegate_linux.cc
+++ b/remoting/host/pairing_registry_delegate_linux.cc
@@ -108,7 +108,7 @@ PairingRegistry::Pairing PairingRegistryDelegateLinux::Load(
bool PairingRegistryDelegateLinux::Save(
const PairingRegistry::Pairing& pairing) {
base::FilePath registry_path = GetRegistryPath();
- base::PlatformFileError error;
+ base::File::Error error;
if (!base::CreateDirectoryAndGetError(registry_path, &error)) {
LOG(ERROR) << "Could not create pairing registry directory: " << error;
return false;

Powered by Google App Engine
This is Rietveld 408576698