blob: 819800993292b22a66135255a8801b2340bfff1d [file] [log] [blame]
// 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 ServiceWorkerClients_h
#define ServiceWorkerClients_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebServiceWorkerClientsInfo.h"
#include "wtf/Forward.h"
namespace blink {
class ExecutionContext;
class ScriptPromise;
class ScriptState;
class ServiceWorkerClient;
class ServiceWorkerClients FINAL : public RefCountedWillBeGarbageCollected<ServiceWorkerClients>, public ScriptWrappable {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ServiceWorkerClients);
public:
static PassRefPtrWillBeRawPtr<ServiceWorkerClients> create();
// ServiceWorkerClients.idl
ScriptPromise getServiced(ScriptState*);
void trace(Visitor*) { }
private:
ServiceWorkerClients();
};
} // namespace blink
#endif // ServiceWorkerClients_h