Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: third_party/WebKit/Source/modules/shapedetection/FaceDetectorImpl.h

Issue 2507283002: Add warmup and sandbox file-read permission for testing
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698