// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_CONTENT_CAPTURE_CLIENT_H_ #define THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_CONTENT_CAPTURE_CLIENT_H_ #include "base/memory/scoped_refptr.h" #include "base/time/time.h" #include "third_party/blink/public/platform/web_vector.h" namespace blink { class WebContentHolder; // This interface is called by ContentCaptureManager to talk to the embedder, // the ContentCapture is disabled without implementation of this interface. class WebContentCaptureClient { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_CONTENT_CAPTURE_CLIENT_H_