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

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

Issue 2875243002: RELAND: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: RELAND2: ShapeDetection: use mojom::Bitmap for mojo interface. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js
diff --git a/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js b/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js
index 1f6a479d8c22017486e0e4dbb35c089b4cb6e393..129c660ee89a424d41cf2773d26f66c9ba6712b8 100644
--- a/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js
+++ b/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js
@@ -18,8 +18,8 @@ let mockBarcodeDetectionReady = define(
handle => this.bindingSet_.addBinding(this, handle));
}
- detect(frame_data, width, height) {
- let receivedStruct = mojo.mapBuffer(frame_data, 0, width*height*4, 0);
+ detect(bitmap_data) {
+ let receivedStruct = new Uint8Array(bitmap_data.pixel_data);
this.buffer_data_ = new Uint32Array(receivedStruct.buffer);
return Promise.resolve({
results: [
@@ -45,7 +45,6 @@ let mockBarcodeDetectionReady = define(
},
],
});
- mojo.unmapBuffer(receivedStruct.buffer);
}
getFrameData() {

Powered by Google App Engine
This is Rietveld 408576698