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

Unified Diff: media/blink/active_loader.h

Issue 1430063003: use MEDIA_BLINK_EXPORT in media/blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/blink/active_loader.h
diff --git a/media/blink/active_loader.h b/media/blink/active_loader.h
index d8c60df8e8b3ba2f92f2215945588d1c837cea00..e74aedfbc9e3bd84bdcf67e91a01a6bed08b8fcf 100644
--- a/media/blink/active_loader.h
+++ b/media/blink/active_loader.h
@@ -7,7 +7,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
-#include "media/base/media_export.h"
+#include "media/blink/media_blink_export.h"
namespace blink {
class WebURLLoader;
@@ -18,7 +18,7 @@ namespace media {
// Wraps an active WebURLLoader with some additional state.
//
// Handles deferring and deletion of loaders.
-class MEDIA_EXPORT ActiveLoader {
+class MEDIA_BLINK_EXPORT ActiveLoader {
public:
// Creates an ActiveLoader with the given loader. It is assumed that the
// initial state of |loader| is loading and not deferred.
@@ -31,6 +31,7 @@ class MEDIA_EXPORT ActiveLoader {
private:
friend class BufferedDataSourceTest;
+ friend class MultibufferDataSourceTest;
xhwang 2015/11/06 23:43:18 why do you need this change now?
hubbe 2015/11/06 23:52:11 Oops, didn't mean for that to sneak in there. Remo
scoped_ptr<blink::WebURLLoader> loader_;
bool deferred_;

Powered by Google App Engine
This is Rietveld 408576698