| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_WEB_TEST_WEB_TEST_WITH_WEB_CONTROLLER_H_ |
| 6 #define IOS_WEB_TEST_WEB_TEST_WITH_WEB_CONTROLLER_H_ |
| 7 |
| 8 #import "ios/web/public/test/web_test_with_web_state.h" |
| 9 #import "ios/web/web_state/ui/crw_web_controller.h" |
| 10 |
| 11 namespace web { |
| 12 |
| 13 // Base test fixture to test CRWWebController. |
| 14 class WebTestWithWebController : public WebTestWithWebState { |
| 15 protected: |
| 16 WebTestWithWebController(); |
| 17 ~WebTestWithWebController() override; |
| 18 // Returns web controller for testing. |
| 19 CRWWebController* web_controller(); |
| 20 }; |
| 21 |
| 22 } // namespace web |
| 23 |
| 24 #endif // IOS_WEB_TEST_WEB_TEST_WITH_WEB_CONTROLLER_H_ |
| OLD | NEW |