blob: 5cb94fed5c0512b071c671daba60509e76a6424b [file] [log] [blame]
// 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 CopylessPasteExtractor_h
#define CopylessPasteExtractor_h
#include "modules/ModulesExport.h"
#include "public/platform/modules/document_metadata/copyless_paste.mojom-blink.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 {
public:
static mojom::document_metadata::blink::WebPagePtr extract(const Document&);
};
} // namespace blink
#endif // CopylessPasteExtractor_h