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

Side by Side Diff: third_party/WebKit/LayoutTests/shapedetection/resources/mock-facedetection.js

Issue 2818563006: ShapeDetection: Holding all of mock service to prevent GC (Closed)
Patch Set: Retrun buffer data of current FaceDetection Created 3 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 "use strict"; 1 "use strict";
2 2
3 let mockFaceDetectionProviderReady = define( 3 let mockFaceDetectionProviderReady = define(
4 'mockFaceDetectionProvider', 4 'mockFaceDetectionProvider',
5 ['services/shape_detection/public/interfaces/facedetection.mojom', 5 ['services/shape_detection/public/interfaces/facedetection.mojom',
6 'services/shape_detection/public/interfaces/facedetection_provider.mojom', 6 'services/shape_detection/public/interfaces/facedetection_provider.mojom',
7 'mojo/public/js/bindings', 7 'mojo/public/js/bindings',
8 'mojo/public/js/core', 8 'mojo/public/js/core',
9 'content/public/renderer/interfaces', 9 'content/public/renderer/interfaces',
10 ], (faceDetection, faceDetectionProvider, bindings, mojo, interfaces) => { 10 ], (faceDetection, faceDetectionProvider, bindings, mojo, interfaces) => {
11 11
12 class MockFaceDetectionProvider { 12 class MockFaceDetectionProvider {
13 constructor() { 13 constructor() {
14 this.bindingSet_ = new bindings.BindingSet( 14 this.bindingSet_ = new bindings.BindingSet(
15 faceDetectionProvider.FaceDetectionProvider); 15 faceDetectionProvider.FaceDetectionProvider);
16 16
17 interfaces.addInterfaceOverrideForTesting( 17 interfaces.addInterfaceOverrideForTesting(
18 faceDetectionProvider.FaceDetectionProvider.name, 18 faceDetectionProvider.FaceDetectionProvider.name,
19 handle => this.bindingSet_.addBinding(this, handle)); 19 handle => this.bindingSet_.addBinding(this, handle));
20
21 this.mockServiceInstances_ = [];
20 } 22 }
21 23
22 createFaceDetection(request, options) { 24 createFaceDetection(request, options) {
23 this.mock_service_ = new MockFaceDetection(request, options); 25 this.mockServiceInstances_.push(new MockFaceDetection(request, options));
26 this.index = this.mockServiceInstances_.length -1;
Ken Rockot(use gerrit already) 2017/05/17 15:29:23 You established in your previous reply that multip
24 } 27 }
25 28
26 getFrameData() { 29 getFrameData() {
27 return this.mock_service_.buffer_data_; 30 return this.mockServiceInstances_[this.index].bufferData_;
28 } 31 }
29 32
30 getMaxDetectedFaces() { 33 getMaxDetectedFaces() {
31 return this.mock_service_.maxDetectedFaces_; 34 return this.mockServiceInstances_[this.index].maxDetectedFaces_;
32 } 35 }
33 36
34 getFastMode () { 37 getFastMode () {
35 return this.mock_service_.fastMode_; 38 return this.mockServiceInstances_[this.index].fastMode_;
36 } 39 }
37 } 40 }
38 41
39 class MockFaceDetection { 42 class MockFaceDetection {
40 constructor(request, options) { 43 constructor(request, options) {
41 this.maxDetectedFaces_ = options.max_detected_faces; 44 this.maxDetectedFaces_ = options.max_detected_faces;
42 this.fastMode_ = options.fast_mode; 45 this.fastMode_ = options.fast_mode;
43 this.binding_ = new bindings.Binding(faceDetection.FaceDetection, this, 46 this.binding_ = new bindings.Binding(faceDetection.FaceDetection, this,
44 request); 47 request);
45 } 48 }
46 49
47 detect(frame_data, width, height) { 50 detect(frame_data, width, height) {
48 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0); 51 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0);
49 this.buffer_data_ = new Uint32Array(receivedStruct.buffer); 52 this.bufferData_ = new Uint32Array(receivedStruct.buffer);
50 return Promise.resolve({ 53 return Promise.resolve({
51 result: { 54 result: {
52 bounding_boxes: [ 55 bounding_boxes: [
53 { x : 1.0, y: 1.0, width: 100.0, height: 100.0 }, 56 { x : 1.0, y: 1.0, width: 100.0, height: 100.0 },
54 { x : 2.0, y: 2.0, width: 200.0, height: 200.0 }, 57 { x : 2.0, y: 2.0, width: 200.0, height: 200.0 },
55 { x : 3.0, y: 3.0, width: 300.0, height: 300.0 }, 58 { x : 3.0, y: 3.0, width: 300.0, height: 300.0 },
56 ] 59 ]
57 } 60 }
58 }); 61 });
59 mojo.unmapBuffer(receivedStruct.buffer); 62 mojo.unmapBuffer(receivedStruct.buffer);
60 } 63 }
61 } 64 }
62 return new MockFaceDetectionProvider(); 65 return new MockFaceDetectionProvider();
63 }); 66 });
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698