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

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: ShapeDetection: Holding the MockFaceDetection to prevent Binding Object to be GCd 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 | « third_party/WebKit/LayoutTests/shapedetection/detection-options.html ('k') | 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));
24 } 26 }
25 27
26 getFrameData() { 28 getFrameData(index) {
Ken Rockot(use gerrit already) 2017/05/04 08:22:42 It seems index is always 0, so this is just a more
27 return this.mock_service_.buffer_data_; 29 return this.mockServiceInstances_[index].bufferData_;
28 } 30 }
29 31
30 getMaxDetectedFaces() { 32 getMaxDetectedFaces(index) {
31 return this.mock_service_.maxDetectedFaces_; 33 return this.mockServiceInstances_[index].maxDetectedFaces_;
32 } 34 }
33 35
34 getFastMode () { 36 getFastMode (index) {
35 return this.mock_service_.fastMode_; 37 return this.mockServiceInstances_[index].fastMode_;
36 } 38 }
37 } 39 }
38 40
39 class MockFaceDetection { 41 class MockFaceDetection {
40 constructor(request, options) { 42 constructor(request, options) {
41 this.maxDetectedFaces_ = options.max_detected_faces; 43 this.maxDetectedFaces_ = options.max_detected_faces;
42 this.fastMode_ = options.fast_mode; 44 this.fastMode_ = options.fast_mode;
43 this.binding_ = new bindings.Binding(faceDetection.FaceDetection, this, 45 this.binding_ = new bindings.Binding(faceDetection.FaceDetection, this,
44 request); 46 request);
45 } 47 }
46 48
47 detect(frame_data, width, height) { 49 detect(frame_data, width, height) {
48 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0); 50 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0);
49 this.buffer_data_ = new Uint32Array(receivedStruct.buffer); 51 this.bufferData_ = new Uint32Array(receivedStruct.buffer);
50 return Promise.resolve({ 52 return Promise.resolve({
51 result: { 53 result: {
52 bounding_boxes: [ 54 bounding_boxes: [
53 { x : 1.0, y: 1.0, width: 100.0, height: 100.0 }, 55 { 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 }, 56 { 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 }, 57 { x : 3.0, y: 3.0, width: 300.0, height: 300.0 },
56 ] 58 ]
57 } 59 }
58 }); 60 });
59 mojo.unmapBuffer(receivedStruct.buffer); 61 mojo.unmapBuffer(receivedStruct.buffer);
60 } 62 }
61 } 63 }
62 return new MockFaceDetectionProvider(); 64 return new MockFaceDetectionProvider();
63 }); 65 });
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/shapedetection/detection-options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698