diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 22:19:19 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 22:19:19 +0000 |
commit | deab99363c103d267e7fa9d8d9237bf73d96ded3 (patch) | |
tree | 445a7dd0d246f462c5d421785b679980b3734503 /base/logging.cc | |
parent | 390a75f503b1f810087cdd60a45be7cf118ed4dc (diff) | |
download | chromium_src-deab99363c103d267e7fa9d8d9237bf73d96ded3.zip chromium_src-deab99363c103d267e7fa9d8d9237bf73d96ded3.tar.gz chromium_src-deab99363c103d267e7fa9d8d9237bf73d96ded3.tar.bz2 |
Remove an unused logging function.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/862002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41325 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.cc')
-rw-r--r-- | base/logging.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/base/logging.cc b/base/logging.cc index 1212fd2..fa98eb2 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -230,16 +230,6 @@ bool InitializeLogFileHandle() { return true; } -#if defined(OS_POSIX) && !defined(OS_MACOSX) -int GetLoggingFileDescriptor() { - // No locking needed, since this is only called by the zygote server, - // which is single-threaded. - if (log_file) - return fileno(log_file); - return -1; -} -#endif - void InitLogMutex() { #if defined(OS_WIN) if (!log_mutex) { |