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 62238ca531ad6090f2c126d04989c5ab2187075c..2a646b49cb6bb3745b0480d9098b03693a04cbc4 100644 |
--- a/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h |
+++ b/third_party/WebKit/Source/modules/shapedetection/DetectedFace.h |
@@ -7,15 +7,22 @@ |
#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 |