From eb5d608b4b2a345da0ae80097ecfc7e522301590 Mon Sep 17 00:00:00 2001 From: "fischman@chromium.org" Date: Wed, 18 Jan 2012 03:29:37 +0000 Subject: buffers.cc: replaced global TimeDelta constants with fully-inlined functions. media_log.cc: replaced global AtomicSequenceNumber with LazyInstance. BUG=94925 TEST=none Review URL: http://codereview.chromium.org/9225001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118026 0039d316-1c4b-4281-b951-d872f2087c98 --- media/base/seekable_buffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'media/base/seekable_buffer.h') diff --git a/media/base/seekable_buffer.h b/media/base/seekable_buffer.h index 18dee8d..56a7ceb 100644 --- a/media/base/seekable_buffer.h +++ b/media/base/seekable_buffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -121,7 +121,7 @@ class MEDIA_EXPORT SeekableBuffer { // timestamp for the current buffer is set to 0 or the data was added with // Append(const uint*, size_t), then returns value that corresponds to the // last position in a buffer that had timestamp set. - // kNoTimestamp is returned if no buffers we read from had timestamp set. + // kNoTimestamp() is returned if no buffers we read from had timestamp set. base::TimeDelta current_time() const { return current_time_; } private: -- cgit v1.1