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

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

Issue 2571903003: Mojo JS bindings: switch most usage of "connection"/"router" module to "bindings". (Closed)
Patch Set: Merge branch 'refs/heads/c161_more_bindings_change' into c160_remove_connection_mojo 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 "use strict"; 1 "use strict";
2 2
3 let mockBarcodeDetectionReady = define( 3 let mockBarcodeDetectionReady = define(
4 'mockBarcodeDetection', 4 'mockBarcodeDetection',
5 ['third_party/WebKit/public/platform/modules/shapedetection/barcodedetection.m ojom', 5 ['third_party/WebKit/public/platform/modules/shapedetection/barcodedetection.m ojom',
6 'mojo/public/js/bindings', 6 'mojo/public/js/bindings',
7 'mojo/public/js/connection',
8 'mojo/public/js/core', 7 'mojo/public/js/core',
9 'content/public/renderer/frame_interfaces', 8 'content/public/renderer/frame_interfaces',
10 ], (barcodeDetection, bindings, connection, mojo, interfaces) => { 9 ], (barcodeDetection, bindings, mojo, interfaces) => {
11 10
12 class MockBarcodeDetection { 11 class MockBarcodeDetection {
13 constructor() { 12 constructor() {
13 this.bindingSet_ = new bindings.BindingSet(
14 barcodeDetection.BarcodeDetection);
15
14 interfaces.addInterfaceOverrideForTesting( 16 interfaces.addInterfaceOverrideForTesting(
15 barcodeDetection.BarcodeDetection.name, 17 barcodeDetection.BarcodeDetection.name,
16 pipe => this.bindToPipe(pipe)); 18 handle => this.bindingSet_.addBinding(this, handle));
17 }
18
19 bindToPipe(pipe) {
20 this.stub_ = connection.bindHandleToStub(pipe,
21 barcodeDetection.BarcodeDetection );
22 bindings.StubBindings(this.stub_).delegate = this;
23 } 19 }
24 20
25 detect(frame_data, width, height) { 21 detect(frame_data, width, height) {
26 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0); 22 let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0);
27 this.buffer_data_ = new Uint32Array(receivedStruct.buffer); 23 this.buffer_data_ = new Uint32Array(receivedStruct.buffer);
28 return Promise.resolve({ 24 return Promise.resolve({
29 results: [ 25 results: [
30 { 26 {
31 raw_value : "cats", 27 raw_value : "cats",
32 bounding_box: { x : 1.0, y: 1.0, width: 100.0, height: 100.0 }, 28 bounding_box: { x : 1.0, y: 1.0, width: 100.0, height: 100.0 },
33 }, 29 },
34 { 30 {
35 raw_value : "dogs", 31 raw_value : "dogs",
36 bounding_box: { x : 2.0, y: 2.0, width: 50.0, height: 50.0 }, 32 bounding_box: { x : 2.0, y: 2.0, width: 50.0, height: 50.0 },
37 }, 33 },
38 ], 34 ],
39 }); 35 });
40 mojo.unmapBuffer(receivedStruct.buffer); 36 mojo.unmapBuffer(receivedStruct.buffer);
41 } 37 }
42 38
43 getFrameData() { 39 getFrameData() {
44 return this.buffer_data_; 40 return this.buffer_data_;
45 } 41 }
46 } 42 }
47 return new MockBarcodeDetection(); 43 return new MockBarcodeDetection();
48 }); 44 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698