| Index: Source/core/html/LinkManifest.h
|
| diff --git a/Source/core/html/LinkManifest.h b/Source/core/html/LinkManifest.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c89b449818eca61a0811fab9b4af2f6b18f41917
|
| --- /dev/null
|
| +++ b/Source/core/html/LinkManifest.h
|
| @@ -0,0 +1,37 @@
|
| +// 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 LinkManifest_h
|
| +#define LinkManifest_h
|
| +
|
| +#include "core/html/LinkResource.h"
|
| +#include "wtf/FastAllocBase.h"
|
| +#include "wtf/PassOwnPtr.h"
|
| +#include "wtf/RefPtr.h"
|
| +
|
| +namespace WebCore {
|
| +
|
| +class HTMLLinkElement;
|
| +
|
| +class LinkManifest FINAL : public LinkResource {
|
| + WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
|
| +public:
|
| +
|
| + static PassOwnPtrWillBeRawPtr<LinkManifest> create(HTMLLinkElement* owner);
|
| +
|
| + virtual ~LinkManifest();
|
| +
|
| + // LinkResource
|
| + virtual void process() OVERRIDE;
|
| + virtual Type type() const OVERRIDE { return Manifest; }
|
| + virtual bool hasLoaded() const OVERRIDE;
|
| + virtual void ownerRemoved() OVERRIDE;
|
| +
|
| +private:
|
| + explicit LinkManifest(HTMLLinkElement* owner);
|
| +};
|
| +
|
| +}
|
| +
|
| +#endif // LinkManifest_h
|
|
|