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

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

Issue 2755393002: Revert of RELAND: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: 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 BarcodeDetector_h 5 #ifndef BarcodeDetector_h
6 #define BarcodeDetector_h 6 #define BarcodeDetector_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 11 matching lines...) Expand all
22 public: 22 public:
23 static BarcodeDetector* create(); 23 static BarcodeDetector* create();
24 24
25 DECLARE_VIRTUAL_TRACE(); 25 DECLARE_VIRTUAL_TRACE();
26 26
27 private: 27 private:
28 BarcodeDetector(); 28 BarcodeDetector();
29 ~BarcodeDetector() override = default; 29 ~BarcodeDetector() override = default;
30 30
31 ScriptPromise doDetect(ScriptPromiseResolver*, 31 ScriptPromise doDetect(ScriptPromiseResolver*,
32 skia::mojom::blink::BitmapPtr) override; 32 mojo::ScopedSharedBufferHandle,
33 int imageWidth,
34 int imageHeight) override;
33 void onDetectBarcodes( 35 void onDetectBarcodes(
34 ScriptPromiseResolver*, 36 ScriptPromiseResolver*,
35 Vector<shape_detection::mojom::blink::BarcodeDetectionResultPtr>); 37 Vector<shape_detection::mojom::blink::BarcodeDetectionResultPtr>);
36 void onBarcodeServiceConnectionError(); 38 void onBarcodeServiceConnectionError();
37 39
38 shape_detection::mojom::blink::BarcodeDetectionPtr m_barcodeService; 40 shape_detection::mojom::blink::BarcodeDetectionPtr m_barcodeService;
39 41
40 HeapHashSet<Member<ScriptPromiseResolver>> m_barcodeServiceRequests; 42 HeapHashSet<Member<ScriptPromiseResolver>> m_barcodeServiceRequests;
41 }; 43 };
42 44
43 } // namespace blink 45 } // namespace blink
44 46
45 #endif // BarcodeDetector_h 47 #endif // BarcodeDetector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698