diff options
author | nsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-06 17:02:34 +0000 |
---|---|---|
committer | nsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-06 17:02:34 +0000 |
commit | dd88bf243bf1ddc01f16fdce388d5a9718240dea (patch) | |
tree | 7ed873c4f947832816a2acd65d3122c8c9166827 /base/logging.h | |
parent | 1010f7d1107f4df30be4a6d97ddeead2d4f3e585 (diff) | |
download | chromium_src-dd88bf243bf1ddc01f16fdce388d5a9718240dea.zip chromium_src-dd88bf243bf1ddc01f16fdce388d5a9718240dea.tar.gz chromium_src-dd88bf243bf1ddc01f16fdce388d5a9718240dea.tar.bz2 |
Revert change 430 because it breaks the build.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@437 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.h')
-rw-r--r-- | base/logging.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/logging.h b/base/logging.h index f380a9b..40c176f 100644 --- a/base/logging.h +++ b/base/logging.h @@ -143,10 +143,10 @@ enum OldFileDeletionState { DELETE_OLD_LOG_FILE, APPEND_TO_OLD_LOG_FILE }; // The default log file is initialized to "debug.log" in the application // directory. You probably don't want this, especially since the program // directory may not be writable on an enduser's system. -#if defined(OS_WIN) +#if defined(WIN32) void InitLogging(const wchar_t* log_file, LoggingDestination logging_dest, LogLockingState lock_log, OldFileDeletionState delete_old); -#elif defined(OS_POSIX) +#else // TODO(avi): do we want to do a unification of character types here? void InitLogging(const char* log_file, LoggingDestination logging_dest, LogLockingState lock_log, OldFileDeletionState delete_old); |