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

Side by Side Diff: services/shape_detection/text_detection_impl_mac_unittest.mm

Issue 2753413002: RELAND: ShapeDetection: use mojom::Bitmap for mojo interface. (Closed)
Patch Set: include the generated JS bindings for bitmap.mojom in the layout tests archive. Created 3 years, 9 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "services/shape_detection/text_detection_impl_mac.h" 5 #include "services/shape_detection/text_detection_impl_mac.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/mac/mac_util.h" 8 #include "base/mac/mac_util.h"
9 #include "base/mac/scoped_cftyperef.h" 9 #include "base/mac/scoped_cftyperef.h"
10 #include "base/mac/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
11 #include "base/mac/sdk_forward_declarations.h" 11 #include "base/mac/sdk_forward_declarations.h"
12 #include "base/run_loop.h" 12 #include "base/run_loop.h"
13 #include "testing/gmock/include/gmock/gmock.h" 13 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "third_party/skia/include/utils/mac/SkCGUtils.h"
15 #include "ui/gl/gl_switches.h" 16 #include "ui/gl/gl_switches.h"
16 17
17 namespace shape_detection { 18 namespace shape_detection {
18 19
19 ACTION_P(RunClosure, closure) { 20 ACTION_P(RunClosure, closure) {
20 closure.Run(); 21 closure.Run();
21 } 22 }
22 23
23 class TextDetectionImplMacTest : public ::testing::Test { 24 class TextDetectionImplMacTest : public ::testing::Test {
24 public: 25 public:
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 75
75 CGContextSetTextPosition(context, 10.0, height / 2.0); 76 CGContextSetTextPosition(context, 10.0, height / 2.0);
76 CTLineDraw(line, context); 77 CTLineDraw(line, context);
77 78
78 // Extract a CGImage and its raw pixels from |context|. 79 // Extract a CGImage and its raw pixels from |context|.
79 base::ScopedCFTypeRef<CGImageRef> cg_image( 80 base::ScopedCFTypeRef<CGImageRef> cg_image(
80 CGBitmapContextCreateImage(context)); 81 CGBitmapContextCreateImage(context));
81 EXPECT_EQ(static_cast<size_t>(width), CGImageGetWidth(cg_image)); 82 EXPECT_EQ(static_cast<size_t>(width), CGImageGetWidth(cg_image));
82 EXPECT_EQ(static_cast<size_t>(height), CGImageGetHeight(cg_image)); 83 EXPECT_EQ(static_cast<size_t>(height), CGImageGetHeight(cg_image));
83 84
84 base::ScopedCFTypeRef<CFDataRef> raw_cg_image_data( 85 SkBitmap bitmap;
85 CGDataProviderCopyData(CGImageGetDataProvider(cg_image))); 86 ASSERT_TRUE(SkCreateBitmapFromCGImage(&bitmap, cg_image));
86 EXPECT_TRUE(CFDataGetBytePtr(raw_cg_image_data));
87 const int num_bytes = width * height * 4;
88 EXPECT_EQ(num_bytes, CFDataGetLength(raw_cg_image_data));
89
90 // Generate a new ScopedSharedBufferHandle of the aproppriate size, map it and
91 // copy the generated text image pixels into it.
92 auto handle = mojo::SharedBufferHandle::Create(num_bytes);
93 ASSERT_TRUE(handle->is_valid());
94
95 mojo::ScopedSharedBufferMapping mapping = handle->Map(num_bytes);
96 ASSERT_TRUE(mapping);
97
98 memcpy(mapping.get(), CFDataGetBytePtr(raw_cg_image_data), num_bytes);
99 87
100 base::RunLoop run_loop; 88 base::RunLoop run_loop;
101 base::Closure quit_closure = run_loop.QuitClosure(); 89 base::Closure quit_closure = run_loop.QuitClosure();
102 // Send the image to Detect() and expect the response in callback. 90 // Send the image to Detect() and expect the response in callback.
103 EXPECT_CALL(*this, Detection(1)).WillOnce(RunClosure(quit_closure)); 91 EXPECT_CALL(*this, Detection(1)).WillOnce(RunClosure(quit_closure));
104 impl_.Detect(std::move(handle), width, height, 92 impl_.Detect(bitmap, base::Bind(&TextDetectionImplMacTest::DetectCallback,
105 base::Bind(&TextDetectionImplMacTest::DetectCallback, 93 base::Unretained(this)));
106 base::Unretained(this)));
107 94
108 run_loop.Run(); 95 run_loop.Run();
109 } 96 }
110 97
111 } // shape_detection namespace 98 } // shape_detection namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698