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

Unified Diff: content/renderer/media/active_loader.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « content/renderer/load_progress_tracker.cc ('k') | content/renderer/media/active_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/active_loader.h
diff --git a/content/renderer/media/active_loader.h b/content/renderer/media/active_loader.h
index 751e6a96c4635da31ae7bef2d0cdac3b11f70c80..1c30214b92cfa60fbab3479fecd6bb40a5ae97bf 100644
--- a/content/renderer/media/active_loader.h
+++ b/content/renderer/media/active_loader.h
@@ -8,7 +8,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
-namespace WebKit {
+namespace blink {
class WebURLLoader;
}
@@ -21,7 +21,7 @@ class 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(scoped_ptr<WebKit::WebURLLoader> loader);
+ explicit ActiveLoader(scoped_ptr<blink::WebURLLoader> loader);
~ActiveLoader();
// Starts or stops deferring the resource load.
@@ -31,7 +31,7 @@ class ActiveLoader {
private:
friend class BufferedDataSourceTest;
- scoped_ptr<WebKit::WebURLLoader> loader_;
+ scoped_ptr<blink::WebURLLoader> loader_;
bool deferred_;
DISALLOW_IMPLICIT_CONSTRUCTORS(ActiveLoader);
« no previous file with comments | « content/renderer/load_progress_tracker.cc ('k') | content/renderer/media/active_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698