| 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
|
|
|