| 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 1e126f28505a05f5965b5f1643251ad4f1306f78..f97ebbbf8f063f4fe8b822b2b5cf41fac12356d7 100644
|
| --- a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| +++ b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h
|
| @@ -7,15 +7,23 @@
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "modules/ModulesExport.h"
|
| -#include "modules/shapedetection/DetectedObject.h"
|
|
|
| namespace blink {
|
|
|
| -class MODULES_EXPORT DetectedFace final : public DetectedObject {
|
| +class DOMRect;
|
| +
|
| +class MODULES_EXPORT DetectedFace final
|
| + : public GarbageCollected<DetectedFace>
|
| + , public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| static DetectedFace* create();
|
| + DOMRect* boundingBox() const;
|
| + DECLARE_TRACE();
|
| +
|
| +private:
|
| + Member<DOMRect> m_boundingBox;
|
| };
|
|
|
| } // namespace blink
|
|
|