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

Unified Diff: media/base/buffers.h

Issue 7601002: Revert r95841 due to failing media_unittests on linux_shared bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
« no previous file with comments | « media/base/async_filter_factory_base.h ('k') | media/base/callback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/buffers.h
===================================================================
--- media/base/buffers.h (revision 95843)
+++ media/base/buffers.h (working copy)
@@ -30,15 +30,13 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/time.h"
-#include "media/base/media_export.h"
namespace media {
// Indicates an invalid or missing timestamp.
-MEDIA_EXPORT extern const base::TimeDelta kNoTimestamp;
+extern const base::TimeDelta kNoTimestamp;
-class MEDIA_EXPORT StreamSample
- : public base::RefCountedThreadSafe<StreamSample> {
+class StreamSample : public base::RefCountedThreadSafe<StreamSample> {
public:
// Returns the timestamp of this buffer in microseconds.
base::TimeDelta GetTimestamp() const {
@@ -78,7 +76,7 @@
};
-class MEDIA_EXPORT Buffer : public StreamSample {
+class Buffer : public StreamSample {
public:
// Returns a read only pointer to the buffer data.
virtual const uint8* GetData() const = 0;
« no previous file with comments | « media/base/async_filter_factory_base.h ('k') | media/base/callback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698