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

Side by Side Diff: third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerRequest.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebServiceWorkerRequest_h 5 #ifndef WebServiceWorkerRequest_h
6 #define WebServiceWorkerRequest_h 6 #define WebServiceWorkerRequest_h
7 7
8 #include "public/platform/WebCommon.h" 8 #include "public/platform/WebCommon.h"
9 #include "public/platform/WebPrivatePtr.h" 9 #include "public/platform/WebPrivatePtr.h"
10 #include "public/platform/WebReferrerPolicy.h" 10 #include "public/platform/WebReferrerPolicy.h"
11 #include "public/platform/WebString.h" 11 #include "public/platform/WebString.h"
12 #include "public/platform/WebURL.h" 12 #include "public/platform/WebURL.h"
13 #include "public/platform/WebURLRequest.h" 13 #include "public/platform/WebURLRequest.h"
14 14
15 #if INSIDE_BLINK 15 #if INSIDE_BLINK
16 #include <utility>
16 #include "platform/network/HTTPHeaderMap.h" 17 #include "platform/network/HTTPHeaderMap.h"
17 #include "platform/weborigin/Referrer.h" 18 #include "platform/weborigin/Referrer.h"
18 #include "wtf/Forward.h" 19 #include "wtf/Forward.h"
19 #include "wtf/text/StringHash.h" 20 #include "wtf/text/StringHash.h"
20 #include <utility>
21 #endif 21 #endif
22 22
23 namespace blink { 23 namespace blink {
24 24
25 class BlobDataHandle; 25 class BlobDataHandle;
26 class WebHTTPHeaderVisitor; 26 class WebHTTPHeaderVisitor;
27 class WebServiceWorkerRequestPrivate; 27 class WebServiceWorkerRequestPrivate;
28 28
29 // Represents a request for a web resource. 29 // Represents a request for a web resource.
30 class BLINK_PLATFORM_EXPORT WebServiceWorkerRequest { 30 class BLINK_PLATFORM_EXPORT WebServiceWorkerRequest {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 const Referrer& referrer() const; 92 const Referrer& referrer() const;
93 #endif 93 #endif
94 94
95 private: 95 private:
96 WebPrivatePtr<WebServiceWorkerRequestPrivate> m_private; 96 WebPrivatePtr<WebServiceWorkerRequestPrivate> m_private;
97 }; 97 };
98 98
99 } // namespace blink 99 } // namespace blink
100 100
101 #endif // WebServiceWorkerRequest_h 101 #endif // WebServiceWorkerRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698