diff options
author | nhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 02:11:28 +0000 |
---|---|---|
committer | nhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 02:11:28 +0000 |
commit | df769fb3249b8713064d0bf1ff11d4e01e6d909e (patch) | |
tree | 9f84285b4d6c528855e84a7d0d0bc0f90ca0f15e /base/files | |
parent | 1f6a9a6af5403491e995350f14745aecbe970a7b (diff) | |
download | chromium_src-df769fb3249b8713064d0bf1ff11d4e01e6d909e.zip chromium_src-df769fb3249b8713064d0bf1ff11d4e01e6d909e.tar.gz chromium_src-df769fb3249b8713064d0bf1ff11d4e01e6d909e.tar.bz2 |
Remove base::FileUtilProxy::Entry since it is no longer used.
base::FileUtilProxy::Entry was moved to fileapi::DirectoryEntry
http://crrev.com/201018
BUG=240245
TEST=none
R=kinuko@chromium.org, willchan@chromium.org
Review URL: https://codereview.chromium.org/15351004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201423 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/files')
-rw-r--r-- | base/files/file_util_proxy.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/base/files/file_util_proxy.h b/base/files/file_util_proxy.h index c5168ad..56d1f77 100644 --- a/base/files/file_util_proxy.h +++ b/base/files/file_util_proxy.h @@ -23,14 +23,6 @@ class Time; // This class provides asynchronous access to common file routines. class BASE_EXPORT FileUtilProxy { public: - // Holds metadata for file or directory entry. - struct Entry { - FilePath::StringType name; - bool is_directory; - int64 size; - base::Time last_modified_time; - }; - // This callback is used by methods that report only an error code. It is // valid to pass a null callback to any function that takes a StatusCallback, // in which case the operation will complete silently. |