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

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

Issue 2753413002: RELAND: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: include the generated JS bindings for bitmap.mojom in the layout tests archive. Created 3 years, 9 months 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef FaceDetector_h 5 #ifndef FaceDetector_h
6 #define FaceDetector_h 6 #define FaceDetector_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptPromiseResolver.h" 9 #include "bindings/core/v8/ScriptPromiseResolver.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
(...skipping 13 matching lines...) Expand all
24 public: 24 public:
25 static FaceDetector* create(const FaceDetectorOptions&); 25 static FaceDetector* create(const FaceDetectorOptions&);
26 26
27 DECLARE_VIRTUAL_TRACE(); 27 DECLARE_VIRTUAL_TRACE();
28 28
29 private: 29 private:
30 explicit FaceDetector(const FaceDetectorOptions&); 30 explicit FaceDetector(const FaceDetectorOptions&);
31 ~FaceDetector() override = default; 31 ~FaceDetector() override = default;
32 32
33 ScriptPromise doDetect(ScriptPromiseResolver*, 33 ScriptPromise doDetect(ScriptPromiseResolver*,
34 mojo::ScopedSharedBufferHandle, 34 skia::mojom::blink::BitmapPtr) override;
35 int imageWidth,
36 int imageHeight) override;
37 void onDetectFaces(ScriptPromiseResolver*, 35 void onDetectFaces(ScriptPromiseResolver*,
38 shape_detection::mojom::blink::FaceDetectionResultPtr); 36 shape_detection::mojom::blink::FaceDetectionResultPtr);
39 void onFaceServiceConnectionError(); 37 void onFaceServiceConnectionError();
40 38
41 shape_detection::mojom::blink::FaceDetectionPtr m_faceService; 39 shape_detection::mojom::blink::FaceDetectionPtr m_faceService;
42 40
43 HeapHashSet<Member<ScriptPromiseResolver>> m_faceServiceRequests; 41 HeapHashSet<Member<ScriptPromiseResolver>> m_faceServiceRequests;
44 }; 42 };
45 43
46 } // namespace blink 44 } // namespace blink
47 45
48 #endif // FaceDetector_h 46 #endif // FaceDetector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698