summaryrefslogtreecommitdiffstats
path: root/media/base/pts_heap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'media/base/pts_heap.cc')
-rw-r--r--media/base/pts_heap.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/media/base/pts_heap.cc b/media/base/pts_heap.cc
deleted file mode 100644
index 84ff5d9..0000000
--- a/media/base/pts_heap.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2010 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.
-
-#include "media/base/pts_heap.h"
-
-namespace media {
-
-PtsHeap::PtsHeap() {}
-
-PtsHeap::~PtsHeap() {}
-
-void PtsHeap::Push(const base::TimeDelta& pts) {
- queue_.push(pts);
-}
-
-void PtsHeap::Pop() {
- queue_.pop();
-}
-
-} // namespace media