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

Unified Diff: public/web/WebCachedURLRequest.h

Issue 455883003: Cleanup namespace usage in public/web/Web[A-M]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « public/web/WebBlob.h ('k') | public/web/WebColorSuggestion.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebCachedURLRequest.h
diff --git a/public/web/WebCachedURLRequest.h b/public/web/WebCachedURLRequest.h
index 8092054c26f98e16e629d2811e5baf3a200b8fdf..89cb482901addf08eb4285a50b05fdbd67cdd442 100644
--- a/public/web/WebCachedURLRequest.h
+++ b/public/web/WebCachedURLRequest.h
@@ -35,10 +35,9 @@
#include "../platform/WebPrivateOwnPtr.h"
#include "../platform/WebString.h"
-namespace blink { class FetchRequest; }
-
namespace blink {
+class FetchRequest;
class WebString;
class WebURLRequest;
class WrappedResourceRequest;
@@ -54,14 +53,14 @@ public:
BLINK_EXPORT WebString initiatorName() const;
#if BLINK_IMPLEMENTATION
- explicit WebCachedURLRequest(blink::FetchRequest*);
+ explicit WebCachedURLRequest(FetchRequest*);
#endif
private:
WebCachedURLRequest(const WebCachedURLRequest&);
WebCachedURLRequest& operator=(const WebCachedURLRequest&);
- blink::FetchRequest* m_private;
+ FetchRequest* m_private;
mutable WebPrivateOwnPtr<WrappedResourceRequest> m_resourceRequestWrapper;
};
« no previous file with comments | « public/web/WebBlob.h ('k') | public/web/WebColorSuggestion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698