| 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 InternalsFetch_h | 5 #ifndef InternalsFetch_h |
| 6 #define InternalsFetch_h | 6 #define InternalsFetch_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 Internals; | 14 class Internals; |
| 15 class Response; | 15 class Response; |
| 16 | 16 |
| 17 class InternalsFetch { | 17 class InternalsFetch { |
| 18 STATIC_ONLY(InternalsFetch); | 18 STATIC_ONLY(InternalsFetch); |
| 19 | 19 |
| 20 public: | 20 public: |
| 21 static Vector<String> getInternalResponseURLList(Internals&, Response*); | 21 static Vector<String> getInternalResponseURLList(Internals&, Response*); |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 } // namespace blink | 24 } // namespace blink |
| 25 | 25 |
| 26 #endif // InternalsFetch_h | 26 #endif // InternalsFetch_h |
| OLD | NEW |