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

Unified Diff: Source/platform/exported/WebURLRequestPrivate.h

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ Created 6 years, 4 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
Index: Source/platform/exported/WebURLRequestPrivate.h
diff --git a/Source/platform/exported/WebURLRequestPrivate.h b/Source/platform/exported/WebURLRequestPrivate.h
index 9aaa18d129099e3a5a82cca7e2a4e0f1387d13d0..6773ba948c7feec95a2c2f33f0ddd089584d7676 100644
--- a/Source/platform/exported/WebURLRequestPrivate.h
+++ b/Source/platform/exported/WebURLRequestPrivate.h
@@ -31,10 +31,9 @@
#ifndef WebURLRequestPrivate_h
#define WebURLRequestPrivate_h
-namespace blink { class ResourceRequest; }
-
namespace blink {
+class ResourceRequest;
tkent 2014/08/12 09:02:34 Please add a blank line after this line.
heeyoun.lee 2014/08/12 09:06:57 Done.
class WebURLRequestPrivate {
public:
WebURLRequestPrivate()
@@ -45,7 +44,7 @@ public:
// Called by WebURLRequest when it no longer needs this object.
virtual void dispose() = 0;
- blink::ResourceRequest* m_resourceRequest;
+ ResourceRequest* m_resourceRequest;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698