diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 18:08:22 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 18:08:22 +0000 |
commit | 4b92c4260c6634b2b3e14960965c15fa45860148 (patch) | |
tree | bd4a1cd88ce046db39f808e312bf6c2eece14bff /base/logging.cc | |
parent | 3bcdab123383ab0c6cf899cbf063f0e231fa0cc0 (diff) | |
download | chromium_src-4b92c4260c6634b2b3e14960965c15fa45860148.zip chromium_src-4b92c4260c6634b2b3e14960965c15fa45860148.tar.gz chromium_src-4b92c4260c6634b2b3e14960965c15fa45860148.tar.bz2 |
Replace a todo with NOTIMPLEMENTED().
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@663 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.cc')
-rw-r--r-- | base/logging.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/base/logging.cc b/base/logging.cc index 98f6755..a7365f8 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -27,6 +27,7 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#include "base/notimplemented.h" #include "build/build_config.h" #if defined(WIN32) @@ -126,7 +127,7 @@ int32 CurrentThreadId() { #elif defined(OS_MACOSX) return mach_thread_self(); #else - // TODO(pinkerton): need linux-fu to fill in thread id here + NOTIMPLEMENTED(); return 0; #endif } @@ -137,7 +138,7 @@ uint64 TickCount() { #elif defined(OS_MACOSX) return mach_absolute_time(); #else - // TODO(pinkerton): need linux-fu to fill in time here + NOTIMPLEMENTED(); return 0; #endif } |