diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 22:41:54 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 22:41:54 +0000 |
commit | 56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180 (patch) | |
tree | aa11ad8a1871b967fe136aa5900d6de8023544ad /base/non_thread_safe.cc | |
parent | 9f9f86ce20db46dfed79eff111eed7a2f3bff48d (diff) | |
download | chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.zip chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.gz chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.bz2 |
Remove unneeded uses of logging.h in header files.
Review URL: http://codereview.chromium.org/43148
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/non_thread_safe.cc')
-rw-r--r-- | base/non_thread_safe.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/non_thread_safe.cc b/base/non_thread_safe.cc index 1163742..d8a91c6 100644 --- a/base/non_thread_safe.cc +++ b/base/non_thread_safe.cc @@ -4,11 +4,11 @@ #include "base/non_thread_safe.h" -#include "base/platform_thread.h" - // These checks are only done in debug builds. #ifndef NDEBUG +#include "base/logging.h" + NonThreadSafe::NonThreadSafe() : valid_thread_id_(PlatformThread::CurrentId()) { } |