| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 #ifndef FaceDetectorImpl_h |
| 5 #define FaceDetectorImpl_h |
| 6 |
| 7 #include "core/dom/DOMRect.h" |
| 8 #include "platform/SharedBuffer.h" |
| 9 #include "public/platform/Platform.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class FaceDetectorImpl { |
| 14 public: |
| 15 static FaceDetectorImpl* Create(); |
| 16 |
| 17 virtual HeapVector<Member<DOMRect>> detectFace(void* frameAddr, |
| 18 int width, |
| 19 int height) = 0; |
| 20 }; |
| 21 } |
| 22 |
| 23 #endif // FaceDetectorImpl_h |
| OLD | NEW |