| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 WorkerInternalsFetch_h | 5 #ifndef WorkerInternalsFetch_h |
| 6 #define WorkerInternalsFetch_h | 6 #define WorkerInternalsFetch_h |
| 7 | 7 |
| 8 #include "wtf/Allocator.h" | 8 #include "platform/wtf/Allocator.h" |
| 9 #include "wtf/Vector.h" | 9 #include "platform/wtf/Vector.h" |
| 10 #include "wtf/text/WTFString.h" | 10 #include "platform/wtf/text/WTFString.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class WorkerInternals; | 14 class WorkerInternals; |
| 15 class Response; | 15 class Response; |
| 16 | 16 |
| 17 class WorkerInternalsFetch { | 17 class WorkerInternalsFetch { |
| 18 STATIC_ONLY(WorkerInternalsFetch); | 18 STATIC_ONLY(WorkerInternalsFetch); |
| 19 | 19 |
| 20 public: | 20 public: |
| 21 static Vector<String> getInternalResponseURLList(WorkerInternals&, Response*); | 21 static Vector<String> getInternalResponseURLList(WorkerInternals&, Response*); |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 } // namespace blink | 24 } // namespace blink |
| 25 | 25 |
| 26 #endif // WorkerInternalsFetch_h | 26 #endif // WorkerInternalsFetch_h |
| OLD | NEW |