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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp

Issue 2799153005: REVERT: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/modules/shapedetection/TextDetector.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp
diff --git a/third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp b/third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp
index 3cab8b2010eadc44c810a56ba725c92bee35432f..734ae85600fe039ae85cce4e105eeab90e5d3394 100644
--- a/third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp
+++ b/third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp
@@ -24,8 +24,11 @@ TextDetector::TextDetector() : ShapeDetector() {
&TextDetector::onTextServiceConnectionError, wrapWeakPersistent(this))));
}
-ScriptPromise TextDetector::doDetect(ScriptPromiseResolver* resolver,
- skia::mojom::blink::BitmapPtr bitmap) {
+ScriptPromise TextDetector::doDetect(
+ ScriptPromiseResolver* resolver,
+ mojo::ScopedSharedBufferHandle sharedBufferHandle,
+ int imageWidth,
+ int imageHeight) {
ScriptPromise promise = resolver->promise();
if (!m_textService) {
resolver->reject(DOMException::create(
@@ -33,7 +36,7 @@ ScriptPromise TextDetector::doDetect(ScriptPromiseResolver* resolver,
return promise;
}
m_textServiceRequests.insert(resolver);
- m_textService->Detect(std::move(bitmap),
+ m_textService->Detect(std::move(sharedBufferHandle), imageWidth, imageHeight,
convertToBaseCallback(WTF::bind(
&TextDetector::onDetectText, wrapPersistent(this),
wrapPersistent(resolver))));
« no previous file with comments | « third_party/WebKit/Source/modules/shapedetection/TextDetector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698