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

Unified Diff: media/blink/active_loader.h

Issue 495353003: Move WebMediaPlayerImpl and its dependencies to media/blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 3 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/blink/DEPS ('k') | media/blink/active_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/active_loader.h
diff --git a/content/renderer/media/active_loader.h b/media/blink/active_loader.h
similarity index 80%
rename from content/renderer/media/active_loader.h
rename to media/blink/active_loader.h
index 1c30214b92cfa60fbab3479fecd6bb40a5ae97bf..d8c60df8e8b3ba2f92f2215945588d1c837cea00 100644
--- a/content/renderer/media/active_loader.h
+++ b/media/blink/active_loader.h
@@ -2,22 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_RENDERER_MEDIA_ACTIVE_LOADER_H_
-#define CONTENT_RENDERER_MEDIA_ACTIVE_LOADER_H_
+#ifndef MEDIA_BLINK_ACTIVE_LOADER_H_
+#define MEDIA_BLINK_ACTIVE_LOADER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+#include "media/base/media_export.h"
namespace blink {
class WebURLLoader;
}
-namespace content {
+namespace media {
// Wraps an active WebURLLoader with some additional state.
//
// Handles deferring and deletion of loaders.
-class ActiveLoader {
+class MEDIA_EXPORT ActiveLoader {
public:
// Creates an ActiveLoader with the given loader. It is assumed that the
// initial state of |loader| is loading and not deferred.
@@ -37,6 +38,6 @@ class ActiveLoader {
DISALLOW_IMPLICIT_CONSTRUCTORS(ActiveLoader);
};
-} // namespace content
+} // namespace media
-#endif // CONTENT_RENDERER_MEDIA_ACTIVE_LOADER_H_
+#endif // MEDIA_BLINK_ACTIVE_LOADER_H_
« no previous file with comments | « media/blink/DEPS ('k') | media/blink/active_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698