OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stddef.h> |
5 #import <UIKit/UIWebView.h> | 6 #import <UIKit/UIWebView.h> |
6 | 7 |
7 #include "ios/web/public/test/web_test_util.h" | 8 #include "ios/web/public/test/web_test_util.h" |
8 #import "ios/web/public/web_state/js/crw_js_injection_manager.h" | 9 #import "ios/web/public/web_state/js/crw_js_injection_manager.h" |
9 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" | 10 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" |
10 #import "ios/web/test/web_test.h" | 11 #import "ios/web/test/web_test.h" |
11 #import "testing/gtest_mac.h" | 12 #import "testing/gtest_mac.h" |
12 | 13 |
13 // Testing class of JsInjectioManager that has no dependencies. | 14 // Testing class of JsInjectioManager that has no dependencies. |
14 @interface TestingCRWJSBaseManager : CRWJSInjectionManager | 15 @interface TestingCRWJSBaseManager : CRWJSInjectionManager |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 [TestingAnotherCRWJSBaseManager class], | 341 [TestingAnotherCRWJSBaseManager class], |
341 [TestingJsManager class], | 342 [TestingJsManager class], |
342 [TestingAnotherJsManager class], | 343 [TestingAnotherJsManager class], |
343 [TestingJsManagerWithNestedDependencies class], | 344 [TestingJsManagerWithNestedDependencies class], |
344 [TestingJsManagerComplex class] | 345 [TestingJsManagerComplex class] |
345 ], | 346 ], |
346 list); | 347 list); |
347 } | 348 } |
348 | 349 |
349 } // namespace | 350 } // namespace |
OLD | NEW |