Chromium Code Reviews| Index: Source/core/loader/ManifestLoader.h |
| diff --git a/Source/core/loader/ManifestLoader.h b/Source/core/loader/ManifestLoader.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f50b38a03414482bdd95fd9a0102fde4354d2807 |
| --- /dev/null |
| +++ b/Source/core/loader/ManifestLoader.h |
| @@ -0,0 +1,45 @@ |
| +// 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 ManifestLoader_h |
| +#define ManifestLoader_h |
| + |
| +#include "core/fetch/ResourceClient.h" |
| +#include "core/fetch/ResourceOwner.h" |
| + |
| +namespace blink { |
| +class WebManifestRequest; |
| +} |
| + |
| +namespace WebCore { |
| + |
| +class Document; |
| + |
| +// The ManifestLoader is a class that fetches and parses a WebManifest and |
| +// informs the passed WebManifestRequest upon completion (success or failure). |
| +// The lifetime of the object is managed by itself. When ::LoadManifest() is |
| +// called an instance of the object is created and as soon as the processing |
| +// is finished, the object will destroy itself. |
| +// The call should make sure that the WebManifestRequest passed to |
| +// ::LoadManifest() is not destroyed before getting a result. |
| +class ManifestLoader FINAL : public ResourceOwner<Resource, ResourceClient> { |
| +public: |
| + static void LoadManifest(blink::WebManifestRequest*, Document*); |
|
dcheng
2014/05/20 22:40:51
Naming. This should be loadManifest.
mlamouri (slow - plz ping)
2014/05/21 09:51:12
Done.
|
| + |
| + // ResourceClient |
| + virtual void notifyFinished(Resource*) OVERRIDE; |
| + |
| +protected: |
| + explicit ManifestLoader(blink::WebManifestRequest*); |
| + virtual ~ManifestLoader(); |
| + |
| + void startLoading(Document*); |
| + |
| +private: |
| + blink::WebManifestRequest* m_request; |
| +}; |
| + |
| +} // namespace WebCore |
| + |
| +#endif |