From 4b92c4260c6634b2b3e14960965c15fa45860148 Mon Sep 17 00:00:00 2001 From: "ericroman@google.com" Date: Mon, 11 Aug 2008 18:08:22 +0000 Subject: Replace a todo with NOTIMPLEMENTED(). git-svn-id: svn://svn.chromium.org/chrome/trunk/src@663 0039d316-1c4b-4281-b951-d872f2087c98 --- base/logging.cc | 5 +++-- 1 file 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 } -- cgit v1.1