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

Side by Side Diff: public/platform/WebURLRequest.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 years 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 unified diff | Download patch
« no previous file with comments | « public/platform/WebURLLoadTiming.h ('k') | public/web/WebArrayBuffer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
31 #ifndef WebURLRequest_h 31 #ifndef WebURLRequest_h
32 #define WebURLRequest_h 32 #define WebURLRequest_h
33 33
34 #include "WebCommon.h" 34 #include "WebCommon.h"
35 #include "WebHTTPBody.h" 35 #include "WebHTTPBody.h"
36 #include "WebReferrerPolicy.h" 36 #include "WebReferrerPolicy.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class ResourceRequest; 40 class ResourceRequest;
41 class WebCString;
42 class WebHTTPBody; 41 class WebHTTPBody;
43 class WebHTTPHeaderVisitor; 42 class WebHTTPHeaderVisitor;
44 class WebString; 43 class WebString;
45 class WebURL; 44 class WebURL;
46 class WebURLRequestPrivate; 45 class WebURLRequestPrivate;
47 46
48 class WebURLRequest { 47 class WebURLRequest {
49 public: 48 public:
50 enum CachePolicy { 49 enum CachePolicy {
51 UseProtocolCachePolicy, // normal load 50 UseProtocolCachePolicy, // normal load
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 protected: 270 protected:
272 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*); 271 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*);
273 272
274 private: 273 private:
275 WebURLRequestPrivate* m_private; 274 WebURLRequestPrivate* m_private;
276 }; 275 };
277 276
278 } // namespace blink 277 } // namespace blink
279 278
280 #endif 279 #endif
OLDNEW
« no previous file with comments | « public/platform/WebURLLoadTiming.h ('k') | public/web/WebArrayBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698