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

Unified Diff: media/blink/active_loader.h

Issue 2399463007: AssociatedURLLoader shouldn't derive from WebURLLoader (Closed)
Patch Set: Rebase Created 4 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
« no previous file with comments | « media/blink/BUILD.gn ('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/media/blink/active_loader.h b/media/blink/active_loader.h
index 50d700a742460ef54b3482e0b6d2e18bdbc8a51a..76d1382e759599bd18c44dabb76db371b3df4d23 100644
--- a/media/blink/active_loader.h
+++ b/media/blink/active_loader.h
@@ -11,7 +11,7 @@
#include "media/blink/media_blink_export.h"
namespace blink {
-class WebURLLoader;
+class WebAssociatedURLLoader;
}
namespace media {
@@ -23,7 +23,7 @@ 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.
- explicit ActiveLoader(std::unique_ptr<blink::WebURLLoader> loader);
+ explicit ActiveLoader(std::unique_ptr<blink::WebAssociatedURLLoader> loader);
~ActiveLoader();
// Starts or stops deferring the resource load.
@@ -33,7 +33,7 @@ class MEDIA_BLINK_EXPORT ActiveLoader {
private:
friend class MultibufferDataSourceTest;
- std::unique_ptr<blink::WebURLLoader> loader_;
+ std::unique_ptr<blink::WebAssociatedURLLoader> loader_;
bool deferred_;
DISALLOW_IMPLICIT_CONSTRUCTORS(ActiveLoader);
« no previous file with comments | « media/blink/BUILD.gn ('k') | media/blink/active_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698