From 6cdfd7f74ebadbe6fd2f557039b8b94242dd714e Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 8 Feb 2013 20:40:15 +0000 Subject: Replace FilePath with base::FilePath in net. Review URL: https://codereview.chromium.org/12218081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181543 0039d316-1c4b-4281-b951-d872f2087c98 --- net/base/file_stream.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/base/file_stream.cc') diff --git a/net/base/file_stream.cc b/net/base/file_stream.cc index 036fd19..aefdb69 100644 --- a/net/base/file_stream.cc +++ b/net/base/file_stream.cc @@ -43,7 +43,7 @@ FileStream::~FileStream() { bound_net_log_.EndEvent(NetLog::TYPE_FILE_STREAM_ALIVE); } -int FileStream::Open(const FilePath& path, int open_flags, +int FileStream::Open(const base::FilePath& path, int open_flags, const CompletionCallback& callback) { if (IsOpen()) { DLOG(FATAL) << "File is already open!"; @@ -56,7 +56,7 @@ int FileStream::Open(const FilePath& path, int open_flags, return ERR_IO_PENDING; } -int FileStream::OpenSync(const FilePath& path, int open_flags) { +int FileStream::OpenSync(const base::FilePath& path, int open_flags) { base::ThreadRestrictions::AssertIOAllowed(); if (IsOpen()) { -- cgit v1.1