OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 #import "ios/chrome/browser/suggestions/ios_image_decoder_impl.h" | 5 #import "ios/chrome/browser/suggestions/ios_image_decoder_impl.h" |
6 | 6 |
7 #import <UIKit/UIKit.h> | 7 #import <UIKit/UIKit.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
12 #include "base/threading/sequenced_worker_pool.h" | |
13 #include "base/threading/thread_task_runner_handle.h" | 12 #include "base/threading/thread_task_runner_handle.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "testing/platform_test.h" | 14 #include "testing/platform_test.h" |
16 #include "ui/gfx/image/image.h" | 15 #include "ui/gfx/image/image.h" |
17 | 16 |
18 #if !defined(__has_feature) || !__has_feature(objc_arc) | 17 #if !defined(__has_feature) || !__has_feature(objc_arc) |
19 #error "This file requires ARC support." | 18 #error "This file requires ARC support." |
20 #endif | 19 #endif |
21 | 20 |
22 namespace { | 21 namespace { |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 image_data, base::Bind(&IOSImageDecoderImplTest::OnImageDecoded, | 99 image_data, base::Bind(&IOSImageDecoderImplTest::OnImageDecoded, |
101 base::Unretained(this))); | 100 base::Unretained(this))); |
102 | 101 |
103 pool_->FlushForTesting(); | 102 pool_->FlushForTesting(); |
104 base::RunLoop().RunUntilIdle(); | 103 base::RunLoop().RunUntilIdle(); |
105 | 104 |
106 EXPECT_FALSE(decoded_image_.IsEmpty()); | 105 EXPECT_FALSE(decoded_image_.IsEmpty()); |
107 } | 106 } |
108 | 107 |
109 } // namespace suggestions | 108 } // namespace suggestions |
OLD | NEW |