| Index: third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| diff --git a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| index 2a646b49cb6bb3745b0480d9098b03693a04cbc4..5a4677f1d11523e7d3756c8dd4c0b15e8e93bbb6 100644
|
| --- a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| +++ b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| @@ -18,10 +18,14 @@ class MODULES_EXPORT DetectedFace final : public GarbageCollected<DetectedFace>,
|
|
|
| public:
|
| static DetectedFace* create();
|
| + static DetectedFace* create(DOMRect*);
|
| +
|
| DOMRect* boundingBox() const;
|
| DECLARE_TRACE();
|
|
|
| private:
|
| + explicit DetectedFace(DOMRect*);
|
| +
|
| Member<DOMRect> m_boundingBox;
|
| };
|
|
|
|
|