summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h b/chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h
deleted file mode 100644
index ccdd46729a9..00000000000
--- a/chromium/third_party/blink/renderer/modules/document_metadata/copyless_paste_extractor.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2017 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 THIRD_PARTY_BLINK_RENDERER_MODULES_DOCUMENT_METADATA_COPYLESS_PASTE_EXTRACTOR_H_
-#define THIRD_PARTY_BLINK_RENDERER_MODULES_DOCUMENT_METADATA_COPYLESS_PASTE_EXTRACTOR_H_
-
-#include "third_party/blink/public/mojom/document_metadata/copyless_paste.mojom-blink-forward.h"
-#include "third_party/blink/renderer/modules/modules_export.h"
-#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
-
-namespace blink {
-
-class Document;
-
-// Extract structured metadata (currently schema.org in JSON-LD) for the
-// Copyless Paste feature. The extraction must be done after the document
-// has finished parsing.
-class MODULES_EXPORT CopylessPasteExtractor final {
- STATIC_ONLY(CopylessPasteExtractor);
-
- public:
- static mojom::document_metadata::blink::WebPagePtr Extract(const Document&);
-};
-
-} // namespace blink
-
-#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_DOCUMENT_METADATA_COPYLESS_PASTE_EXTRACTOR_H_