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

Side by Side Diff: media/base/pts_heap.cc

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file.
4
5 #include "media/base/pts_heap.h"
6
7 namespace media {
8
9 PtsHeap::PtsHeap() {}
10
11 PtsHeap::~PtsHeap() {}
12
13 void PtsHeap::Push(const base::TimeDelta& pts) {
14 queue_.push(pts);
15 }
16
17 void PtsHeap::Pop() {
18 queue_.pop();
19 }
20
21 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698