Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(553)

Unified Diff: media/base/pts_heap.h

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/base/pts_heap.h
diff --git a/media/base/pts_heap.h b/media/base/pts_heap.h
index 7795d6837ffd8d318c6b9bffd60b118c85be6b7c..0b251e4eb05d7a2cac9f8c7613dd283f3e4c243f 100644
--- a/media/base/pts_heap.h
+++ b/media/base/pts_heap.h
@@ -36,10 +36,11 @@ namespace media {
class PtsHeap {
public:
- PtsHeap() {}
+ PtsHeap();
+ ~PtsHeap();
- void Push(const base::TimeDelta& pts) { queue_.push(pts); }
- void Pop() { queue_.pop(); }
+ void Push(const base::TimeDelta& pts);
+ void Pop();
const base::TimeDelta& Top() const { return queue_.top(); }
bool IsEmpty() const { return queue_.empty(); }

Powered by Google App Engine
This is Rietveld 408576698