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

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

Issue 2539073002: Remove [ConstructorCallWith=ScriptState] from ShapeDetector (Closed)
Patch Set: temp 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 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"
11 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
12 #include "modules/canvas2d/CanvasRenderingContext2D.h" 12 #include "modules/canvas2d/CanvasRenderingContext2D.h"
13 #include "modules/shapedetection/ShapeDetector.h" 13 #include "modules/shapedetection/ShapeDetector.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class LocalFrame; 17 class LocalFrame;
18 18
19 class MODULES_EXPORT FaceDetector final : public ShapeDetector, 19 class MODULES_EXPORT FaceDetector final : public ShapeDetector,
20 public ScriptWrappable { 20 public ScriptWrappable {
21 DEFINE_WRAPPERTYPEINFO(); 21 DEFINE_WRAPPERTYPEINFO();
22 22
23 public: 23 public:
24 static FaceDetector* create(ScriptState*, const FaceDetectorOptions&); 24 static FaceDetector* create(Document&, const FaceDetectorOptions&);
25 25
26 ScriptPromise detect(ScriptState*, const CanvasImageSourceUnion&); 26 ScriptPromise detect(ScriptState*, const CanvasImageSourceUnion&);
27 DECLARE_VIRTUAL_TRACE(); 27 DECLARE_VIRTUAL_TRACE();
28 28
29 private: 29 private:
30 FaceDetector(LocalFrame&, const FaceDetectorOptions&); 30 FaceDetector(LocalFrame&, const FaceDetectorOptions&);
31 ~FaceDetector() override = default; 31 ~FaceDetector() override = default;
32 }; 32 };
33 33
34 } // namespace blink 34 } // namespace blink
35 35
36 #endif // FaceDetector_h 36 #endif // FaceDetector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698