blob: c5ef169c7d32043d525e5fd45c557ba2a8bb3ca5 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef InternalsFetch_h
#define InternalsFetch_h
#include "platform/wtf/Allocator.h"
#include "platform/wtf/Vector.h"
#include "platform/wtf/text/WTFString.h"
namespace blink {
class Internals;
class Response;
class InternalsFetch {
STATIC_ONLY(InternalsFetch);
public:
static Vector<String> getInternalResponseURLList(Internals&, Response*);
};
} // namespace blink
#endif // InternalsFetch_h