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

Unified Diff: media/blink/url_index.h

Issue 1399603003: Tie multibuffers to URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@media_cache
Patch Set: added MEDIA_BLINK_EXPORT Created 5 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/blink/url_index.h
diff --git a/media/blink/url_index.h b/media/blink/url_index.h
index b780d21107ed81f934e312565ca84302b7773ec6..29423cb67725b99c664a6f9d514936c0e1d413db 100644
--- a/media/blink/url_index.h
+++ b/media/blink/url_index.h
@@ -10,19 +10,17 @@
#include "base/memory/ref_counted.h"
#include "base/threading/thread_checker.h"
-#include "media/base/media_export.h"
#include "media/blink/lru.h"
+#include "media/blink/media_blink_export.h"
#include "url/gurl.h"
namespace media {
-#ifndef MEDIA_BLINK_BUFFERED_RESOURCE_LOADER_H_
const int64 kPositionNotSpecified = -1;
-#endif
class UrlIndex;
-class MEDIA_EXPORT UrlData : public base::RefCounted<UrlData> {
+class MEDIA_BLINK_EXPORT UrlData : public base::RefCounted<UrlData> {
public:
// Keep in sync with WebMediaPlayer::CORSMode.
enum CORSMode { kUnspecified, kAnonymous, kUseCredentials };
@@ -100,7 +98,7 @@ public:
// we can be sure that UrlData instances with zero references
// do not have any cached data associated with them, and they
// can safely be removed from the UrlIndex.
-class MEDIA_EXPORT UrlIndex {
+class MEDIA_BLINK_EXPORT UrlIndex {
public:
UrlIndex();
~UrlIndex();

Powered by Google App Engine
This is Rietveld 408576698