| OLD | NEW |
| 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 "modules/ModulesExport.h" | 10 #include "modules/ModulesExport.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 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 mojo::ScopedSharedBufferHandle, | 32 skia::mojom::blink::BitmapPtr) override; |
| 33 int image_width, | |
| 34 int image_height) override; | |
| 35 void OnDetectBarcodes( | 33 void OnDetectBarcodes( |
| 36 ScriptPromiseResolver*, | 34 ScriptPromiseResolver*, |
| 37 Vector<shape_detection::mojom::blink::BarcodeDetectionResultPtr>); | 35 Vector<shape_detection::mojom::blink::BarcodeDetectionResultPtr>); |
| 38 void OnBarcodeServiceConnectionError(); | 36 void OnBarcodeServiceConnectionError(); |
| 39 | 37 |
| 40 shape_detection::mojom::blink::BarcodeDetectionPtr barcode_service_; | 38 shape_detection::mojom::blink::BarcodeDetectionPtr barcode_service_; |
| 41 | 39 |
| 42 HeapHashSet<Member<ScriptPromiseResolver>> barcode_service_requests_; | 40 HeapHashSet<Member<ScriptPromiseResolver>> barcode_service_requests_; |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 } // namespace blink | 43 } // namespace blink |
| 46 | 44 |
| 47 #endif // BarcodeDetector_h | 45 #endif // BarcodeDetector_h |
| OLD | NEW |