| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_WEB_NAVIGATION_WEB_LOAD_PARAMS_H_ | |
| 6 #define IOS_WEB_NAVIGATION_WEB_LOAD_PARAMS_H_ | |
| 7 | |
| 8 #import "ios/web/public/navigation_manager.h" | |
| 9 | |
| 10 namespace web { | |
| 11 | |
| 12 // TODO(crbug.com/597990) Remove this alias once all clients are switched to | |
| 13 // use web::NavigationManager::WebLoadParams. | |
| 14 using WebLoadParams = web::NavigationManager::WebLoadParams; | |
| 15 | |
| 16 } // namespace web | |
| 17 | |
| 18 #endif // IOS_WEB_NAVIGATION_WEB_LOAD_PARAMS_H_ | |
| OLD | NEW |