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

Unified Diff: third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.h

Issue 2550363002: Add LayoutTests for URL list of Response (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.h
diff --git a/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.h b/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.h
new file mode 100644
index 0000000000000000000000000000000000000000..605b6f495b937e2dd347d1bc36f9e88b17a98c9f
--- /dev/null
+++ b/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.h
@@ -0,0 +1,26 @@
+// 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 "wtf/Allocator.h"
+#include "wtf/Vector.h"
+#include "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

Powered by Google App Engine
This is Rietveld 408576698