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

Unified Diff: Source/core/loader/PingLoader.h

Issue 1111173002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Incorporating Review Comments Created 5 years, 8 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 | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/loader/PingLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/PingLoader.h
diff --git a/Source/core/loader/PingLoader.h b/Source/core/loader/PingLoader.h
index df8ce07d230f34f19b02aefd5decf9a00e7e3c38..29a2d73446bbe690f45bedee857cee3c553a9265 100644
--- a/Source/core/loader/PingLoader.h
+++ b/Source/core/loader/PingLoader.h
@@ -57,7 +57,7 @@ class ResourceRequest;
// The ping loader is used by audit pings, beacon transmissions and image loads
// during page unloading.
//
-class CORE_EXPORT PingLoader : public RefCountedWillBeRefCountedGarbageCollected<PingLoader>, public PageLifecycleObserver, private blink::WebURLLoaderClient {
+class CORE_EXPORT PingLoader : public RefCountedWillBeRefCountedGarbageCollected<PingLoader>, public PageLifecycleObserver, private WebURLLoaderClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PingLoader);
WTF_MAKE_NONCOPYABLE(PingLoader);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PingLoader);
@@ -83,21 +83,21 @@ protected:
void dispose();
private:
- virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) override;
- virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int) override;
- virtual void didFinishLoading(blink::WebURLLoader*, double, int64_t) override;
- virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) override;
+ virtual void didReceiveResponse(WebURLLoader*, const WebURLResponse&) override;
+ virtual void didReceiveData(WebURLLoader*, const char*, int, int) override;
+ virtual void didFinishLoading(WebURLLoader*, double, int64_t) override;
+ virtual void didFail(WebURLLoader*, const WebURLError&) override;
void timeout(Timer<PingLoader>*);
void didFailLoading(Page*);
- OwnPtr<blink::WebURLLoader> m_loader;
+ OwnPtr<WebURLLoader> m_loader;
Timer<PingLoader> m_timeout;
String m_url;
unsigned long m_identifier;
};
-}
+} // namespace blink
#endif // PingLoader_h
« no previous file with comments | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/loader/PingLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698