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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/ShapeDetector.h

Issue 2502723002: ShapeDetection: implement barcode detection, blink part (Closed)
Patch Set: haraken@ comments 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/shapedetection/ShapeDetector.h
diff --git a/third_party/WebKit/Source/modules/shapedetection/ShapeDetector.h b/third_party/WebKit/Source/modules/shapedetection/ShapeDetector.h
new file mode 100644
index 0000000000000000000000000000000000000000..b12d1af991f322ff15a9a5018df9c63e8109db8a
--- /dev/null
+++ b/third_party/WebKit/Source/modules/shapedetection/ShapeDetector.h
@@ -0,0 +1,64 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ShapeDetector_h
+#define ShapeDetector_h
+
+#include "bindings/core/v8/ScriptPromise.h"
+#include "bindings/core/v8/ScriptPromiseResolver.h"
+#include "modules/ModulesExport.h"
+#include "modules/canvas2d/CanvasRenderingContext2D.h"
+#include "public/platform/modules/shapedetection/shapedetection.mojom-blink.h"
+
+namespace blink {
+
+class LocalFrame;
+
+class MODULES_EXPORT ShapeDetector
+ : public GarbageCollectedFinalized<ShapeDetector> {
+ public:
+ enum class DetectorType {
+ Face,
+ Barcode
+ // TODO(mcasas): Implement TextDetector after
+ // https://github.com/WICG/shape-detection-api/issues/6
+ };
+ explicit ShapeDetector(LocalFrame&);
+ virtual ~ShapeDetector() = default;
+
+ ScriptPromise detectShapes(ScriptState*,
+ DetectorType,
+ const CanvasImageSourceUnion&);
+ DECLARE_VIRTUAL_TRACE();
+
+ private:
+ ScriptPromise detectShapesOnImageElement(DetectorType,
+ ScriptPromiseResolver*,
+ const HTMLImageElement*);
+ ScriptPromise detectShapesOnImageBitmap(DetectorType,
+ ScriptPromiseResolver*,
+ ImageBitmap*);
+ ScriptPromise detectShapesOnVideoElement(DetectorType,
+ ScriptPromiseResolver*,
+ const HTMLVideoElement*);
+
+ ScriptPromise detectShapesOnData(DetectorType,
+ ScriptPromiseResolver*,
+ uint8_t* data,
+ int size,
+ int width,
+ int height);
+ void onDetectFaces(ScriptPromiseResolver*,
+ mojom::blink::FaceDetectionResultPtr);
+ void onDetectBarcodes(ScriptPromiseResolver*,
+ Vector<mojom::blink::BarcodeDetectionResultPtr>);
+
+ mojom::blink::ShapeDetectionPtr m_service;
+
+ HeapHashSet<Member<ScriptPromiseResolver>> m_serviceRequests;
+};
+
+} // namespace blink
+
+#endif // ShapeDetector_h

Powered by Google App Engine
This is Rietveld 408576698