| Index: third_party/WebKit/Source/core/html/LinkServiceWorker.h
|
| diff --git a/third_party/WebKit/Source/core/html/LinkManifest.h b/third_party/WebKit/Source/core/html/LinkServiceWorker.h
|
| similarity index 59%
|
| copy from third_party/WebKit/Source/core/html/LinkManifest.h
|
| copy to third_party/WebKit/Source/core/html/LinkServiceWorker.h
|
| index 1b0a70b1c7e0ba3b2f51dc615e0ec275a1dd9e8a..efccc3d0dcab9676b7fe38c3c3cdd73bc1e50cb1 100644
|
| --- a/third_party/WebKit/Source/core/html/LinkManifest.h
|
| +++ b/third_party/WebKit/Source/core/html/LinkServiceWorker.h
|
| @@ -2,8 +2,8 @@
|
| // 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
|
| +#ifndef LinkServiceWorker_h
|
| +#define LinkServiceWorker_h
|
|
|
| #include "core/html/LinkResource.h"
|
| #include "wtf/Allocator.h"
|
| @@ -14,13 +14,13 @@ namespace blink {
|
|
|
| class HTMLLinkElement;
|
|
|
| -class LinkManifest final : public LinkResource {
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(LinkManifest);
|
| +class LinkServiceWorker final : public LinkResource {
|
| + USING_FAST_MALLOC_WILL_BE_REMOVED(LinkServiceWorker);
|
| public:
|
|
|
| - static PassOwnPtrWillBeRawPtr<LinkManifest> create(HTMLLinkElement* owner);
|
| + static PassOwnPtrWillBeRawPtr<LinkServiceWorker> create(HTMLLinkElement* owner);
|
|
|
| - ~LinkManifest() override;
|
| + ~LinkServiceWorker() override;
|
|
|
| // LinkResource
|
| void process() override;
|
| @@ -29,9 +29,9 @@ public:
|
| void ownerRemoved() override;
|
|
|
| private:
|
| - explicit LinkManifest(HTMLLinkElement* owner);
|
| + explicit LinkServiceWorker(HTMLLinkElement* owner);
|
| };
|
|
|
| } // namespace blink
|
|
|
| -#endif // LinkManifest_h
|
| +#endif // LinkServiceWorker_h
|
|
|