| 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_
|
|
|