| OLD | NEW |
| 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/message_loop/message_loop.h" |
| 12 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 13 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.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 } |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 // Send the image to Detect() and expect the response in callback. | 103 // Send the image to Detect() and expect the response in callback. |
| 103 EXPECT_CALL(*this, Detection(1)).WillOnce(RunClosure(quit_closure)); | 104 EXPECT_CALL(*this, Detection(1)).WillOnce(RunClosure(quit_closure)); |
| 104 impl_.Detect(std::move(handle), width, height, | 105 impl_.Detect(std::move(handle), width, height, |
| 105 base::Bind(&TextDetectionImplMacTest::DetectCallback, | 106 base::Bind(&TextDetectionImplMacTest::DetectCallback, |
| 106 base::Unretained(this))); | 107 base::Unretained(this))); |
| 107 | 108 |
| 108 run_loop.Run(); | 109 run_loop.Run(); |
| 109 } | 110 } |
| 110 | 111 |
| 111 } // shape_detection namespace | 112 } // shape_detection namespace |
| OLD | NEW |