| Index: third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
|
| diff --git a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
|
| index e16c8cc061bb07db6e0885824cb4992911a6e97d..c370d6bb1bd72057773da500a3633e5455b21770 100644
|
| --- a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
|
| +++ b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.h
|
| @@ -22,13 +22,13 @@ class MODULES_EXPORT FaceDetector final : public ShapeDetector,
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| - static FaceDetector* create(ScriptState*);
|
| + static FaceDetector* create(ScriptState*, const FaceDetectorOptions&);
|
|
|
| ScriptPromise detect(ScriptState*, const CanvasImageSourceUnion&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - explicit FaceDetector(LocalFrame&);
|
| + explicit FaceDetector(LocalFrame&, const FaceDetectorOptions&);
|
| ~FaceDetector() override = default;
|
| };
|
|
|
|
|