OLD | NEW |
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 WebServiceWorkerResponse_h | 5 #ifndef WebServiceWorkerResponse_h |
6 #define WebServiceWorkerResponse_h | 6 #define WebServiceWorkerResponse_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/WebServiceWorkerResponseError.h" | |
11 #include "public/platform/WebServiceWorkerResponseType.h" | |
12 #include "public/platform/WebString.h" | 10 #include "public/platform/WebString.h" |
13 #include "public/platform/WebURL.h" | 11 #include "public/platform/WebURL.h" |
14 #include "public/platform/WebVector.h" | 12 #include "public/platform/WebVector.h" |
| 13 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseError.h" |
| 14 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseType.h" |
15 | 15 |
16 #if INSIDE_BLINK | 16 #if INSIDE_BLINK |
17 #include "wtf/Forward.h" | 17 #include "wtf/Forward.h" |
18 #include "wtf/HashMap.h" | 18 #include "wtf/HashMap.h" |
19 #include "wtf/text/StringHash.h" | 19 #include "wtf/text/StringHash.h" |
20 #endif | 20 #endif |
21 | 21 |
22 namespace blink { | 22 namespace blink { |
23 | 23 |
24 class BlobDataHandle; | 24 class BlobDataHandle; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 PassRefPtr<BlobDataHandle> blobDataHandle() const; | 83 PassRefPtr<BlobDataHandle> blobDataHandle() const; |
84 #endif | 84 #endif |
85 | 85 |
86 private: | 86 private: |
87 WebPrivatePtr<WebServiceWorkerResponsePrivate> m_private; | 87 WebPrivatePtr<WebServiceWorkerResponsePrivate> m_private; |
88 }; | 88 }; |
89 | 89 |
90 } // namespace blink | 90 } // namespace blink |
91 | 91 |
92 #endif // WebServiceWorkerResponse_h | 92 #endif // WebServiceWorkerResponse_h |
OLD | NEW |