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

Unified Diff: ui/base/test/ios/ui_image_test_utils.mm

Issue 2645653003: Expose thumbnails of pages to iOS share extensions. (Closed)
Patch Set: Addressed comments. Created 3 years, 10 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 | « ui/base/test/ios/ui_image_test_utils.h ('k') | ui/base/test/ios/ui_image_test_utils_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/test/ios/ui_image_test_utils.mm
diff --git a/ui/base/test/ios/ui_image_test_utils.mm b/ui/base/test/ios/ui_image_test_utils.mm
new file mode 100644
index 0000000000000000000000000000000000000000..44721173404f8769e454aa8ebf453aa29d34efac
--- /dev/null
+++ b/ui/base/test/ios/ui_image_test_utils.mm
@@ -0,0 +1,48 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/base/test/ios/ui_image_test_utils.h"
+
+#include "base/mac/scoped_cftyperef.h"
+
+namespace ui {
+namespace test {
+namespace uiimage_utils {
+
+UIImage* UIImageWithSizeAndSolidColor(CGSize const& size, UIColor* color) {
+ UIGraphicsBeginImageContext(size);
+ CGContextRef context = UIGraphicsGetCurrentContext();
+ CGContextSetFillColorWithColor(context, [color CGColor]);
+ CGContextFillRect(context, CGRectMake(0, 0, size.width, size.height));
+ UIImage* image_with_solid_color = UIGraphicsGetImageFromCurrentImageContext();
+ UIGraphicsEndImageContext();
+ return image_with_solid_color;
+}
+
+bool UIImagesAreEqual(UIImage* image_1, UIImage* image_2) {
+ if (image_1 == image_2)
+ return true;
+
+ if (!CGSizeEqualToSize(image_1.size, image_2.size))
+ return false;
+
+ base::ScopedCFTypeRef<CFDataRef> data_ref_1(
+ CGDataProviderCopyData(CGImageGetDataProvider(image_1.CGImage)));
+ base::ScopedCFTypeRef<CFDataRef> data_ref_2(
+ CGDataProviderCopyData(CGImageGetDataProvider(image_2.CGImage)));
+ CFIndex length_1 = CFDataGetLength(data_ref_1);
+ CFIndex length_2 = CFDataGetLength(data_ref_2);
+ if (length_1 != length_2) {
+ return false;
+ }
+ const UInt8* ptr_1 = CFDataGetBytePtr(data_ref_1);
+ const UInt8* ptr_2 = CFDataGetBytePtr(data_ref_2);
+
+ // memcmp returns 0 if length is 0.
+ return memcmp(ptr_1, ptr_2, length_1) == 0;
+}
+
+} // namespace uiimage_utils
+} // namespace test
+} // namespace ui
« no previous file with comments | « ui/base/test/ios/ui_image_test_utils.h ('k') | ui/base/test/ios/ui_image_test_utils_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698