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

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

Issue 2550413005: ShapeDetection: use ImageBitmapSource as input and support ImageData (Closed)
Patch Set: xianglu@ comments and added forgotten LayoutTest detection-ImageData.html Created 4 years 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 ShapeDetector_h 5 #ifndef ShapeDetector_h
6 #define ShapeDetector_h 6 #define ShapeDetector_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 "core/imagebitmap/ImageBitmapFactories.h"
10 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
11 #include "modules/canvas2d/CanvasRenderingContext2D.h" 12 #include "modules/canvas2d/CanvasRenderingContext2D.h"
12 13
13 namespace blink { 14 namespace blink {
14 15
15 class LocalFrame; 16 class LocalFrame;
16 17
17 class MODULES_EXPORT ShapeDetector 18 class MODULES_EXPORT ShapeDetector
18 : public GarbageCollectedFinalized<ShapeDetector> { 19 : public GarbageCollectedFinalized<ShapeDetector> {
19 public: 20 public:
20 // TODO(mcasas): Implement TextDetector after 21 // TODO(mcasas): Implement TextDetector after
21 // https://github.com/WICG/shape-detection-api/issues/6 22 // https://github.com/WICG/shape-detection-api/issues/6
22 explicit ShapeDetector(LocalFrame&); 23 explicit ShapeDetector(LocalFrame&);
23 virtual ~ShapeDetector() = default; 24 virtual ~ShapeDetector() = default;
24 25
25 ScriptPromise detect(ScriptState*, const CanvasImageSourceUnion&); 26 ScriptPromise detect(ScriptState*, const ImageBitmapSourceUnion&);
26 DEFINE_INLINE_VIRTUAL_TRACE() {} 27 DEFINE_INLINE_VIRTUAL_TRACE() {}
27 28
28 private: 29 private:
30 ScriptPromise detectShapesOnImageData(ScriptPromiseResolver*, ImageData*);
29 ScriptPromise detectShapesOnImageElement(ScriptPromiseResolver*, 31 ScriptPromise detectShapesOnImageElement(ScriptPromiseResolver*,
30 const HTMLImageElement*); 32 const HTMLImageElement*);
31 33
32 virtual ScriptPromise doDetect(ScriptPromiseResolver*, 34 virtual ScriptPromise doDetect(ScriptPromiseResolver*,
33 mojo::ScopedSharedBufferHandle, 35 mojo::ScopedSharedBufferHandle,
34 int imageWidth, 36 int imageWidth,
35 int imageHeight) = 0; 37 int imageHeight) = 0;
36 }; 38 };
37 39
38 } // namespace blink 40 } // namespace blink
39 41
40 #endif // ShapeDetector_h 42 #endif // ShapeDetector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698