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

Unified Diff: Source/modules/serviceworkers/RequestInit.h

Issue 795323003: Move Fetch API releted code to modules/fetch. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/modules/serviceworkers/Request.idl ('k') | Source/modules/serviceworkers/RequestInit.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/RequestInit.h
diff --git a/Source/modules/serviceworkers/RequestInit.h b/Source/modules/serviceworkers/RequestInit.h
deleted file mode 100644
index 987ac0506f82f554ac954cf9f2da69669baccab4..0000000000000000000000000000000000000000
--- a/Source/modules/serviceworkers/RequestInit.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 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 RequestInit_h
-#define RequestInit_h
-
-#include "bindings/core/v8/Dictionary.h"
-#include "platform/heap/Handle.h"
-#include "wtf/RefPtr.h"
-#include "wtf/text/WTFString.h"
-
-namespace blink {
-
-class BlobDataHandle;
-class ExceptionState;
-class Headers;
-
-// FIXME: Use IDL dictionary instead of this class.
-class RequestInit {
- STACK_ALLOCATED();
-public:
- explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&);
-
- String method;
- Member<Headers> headers;
- Dictionary headersDictionary;
- RefPtr<BlobDataHandle> bodyBlobHandle;
- String mode;
- String credentials;
-};
-
-}
-
-#endif // RequestInit_h
« no previous file with comments | « Source/modules/serviceworkers/Request.idl ('k') | Source/modules/serviceworkers/RequestInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698