OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/web/test/web_int_test.h" | 5 #import "ios/web/test/web_int_test.h" |
6 | 6 |
7 #include "base/ios/block_types.h" | 7 #import "base/ios/block_types.h" |
8 | 8 |
9 #include "base/test/ios/wait_util.h" | 9 #import "base/test/ios/wait_util.h" |
10 #import "ios/web/public/test/http_server.h" | 10 #import "ios/web/public/test/http_server.h" |
11 #import "ios/web/public/web_view_creation_util.h" | 11 #import "ios/web/public/web_view_creation_util.h" |
12 | 12 |
13 namespace web { | 13 namespace web { |
14 | 14 |
15 WebIntTest::WebIntTest() {} | 15 WebIntTest::WebIntTest() {} |
16 WebIntTest::~WebIntTest() {} | 16 WebIntTest::~WebIntTest() {} |
17 | 17 |
18 void WebIntTest::SetUp() { | 18 void WebIntTest::SetUp() { |
19 WebTest::SetUp(); | 19 WebTest::SetUp(); |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 } else { | 65 } else { |
66 remove_data(); | 66 remove_data(); |
67 } | 67 } |
68 | 68 |
69 base::test::ios::WaitUntilCondition(^bool { | 69 base::test::ios::WaitUntilCondition(^bool { |
70 return data_removed; | 70 return data_removed; |
71 }); | 71 }); |
72 } | 72 } |
73 | 73 |
74 } // namespace web | 74 } // namespace web |
OLD | NEW |