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

Unified Diff: webkit/child/weburlloader_impl.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (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 | « webkit/child/webthread_impl.cc ('k') | webkit/child/weburlloader_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/weburlloader_impl.h
diff --git a/webkit/child/weburlloader_impl.h b/webkit/child/weburlloader_impl.h
index 833d83a46400de1ddbe6edbbc3da568c5d2a6c10..3cd200183bbc2b6591fec54a01872093e6858688 100644
--- a/webkit/child/weburlloader_impl.h
+++ b/webkit/child/weburlloader_impl.h
@@ -14,30 +14,30 @@ namespace webkit_glue {
class WebKitPlatformSupportImpl;
struct ResourceResponseInfo;
-class WebURLLoaderImpl : public WebKit::WebURLLoader {
+class WebURLLoaderImpl : public blink::WebURLLoader {
public:
explicit WebURLLoaderImpl(WebKitPlatformSupportImpl* platform);
virtual ~WebURLLoaderImpl();
- static WebKit::WebURLError CreateError(const WebKit::WebURL& unreachable_url,
+ static blink::WebURLError CreateError(const blink::WebURL& unreachable_url,
int reason);
WEBKIT_CHILD_EXPORT static void PopulateURLResponse(
const GURL& url,
const ResourceResponseInfo& info,
- WebKit::WebURLResponse* response);
+ blink::WebURLResponse* response);
// WebURLLoader methods:
virtual void loadSynchronously(
- const WebKit::WebURLRequest& request,
- WebKit::WebURLResponse& response,
- WebKit::WebURLError& error,
- WebKit::WebData& data);
+ const blink::WebURLRequest& request,
+ blink::WebURLResponse& response,
+ blink::WebURLError& error,
+ blink::WebData& data);
virtual void loadAsynchronously(
- const WebKit::WebURLRequest& request,
- WebKit::WebURLLoaderClient* client);
+ const blink::WebURLRequest& request,
+ blink::WebURLLoaderClient* client);
virtual void cancel();
virtual void setDefersLoading(bool value);
- virtual void didChangePriority(WebKit::WebURLRequest::Priority new_priority);
+ virtual void didChangePriority(blink::WebURLRequest::Priority new_priority);
private:
class Context;
« no previous file with comments | « webkit/child/webthread_impl.cc ('k') | webkit/child/weburlloader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698