| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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/public/test/fakes/test_navigation_manager.h" | 5 #import "ios/web/public/test/fakes/test_navigation_manager.h" |
| 6 | 6 |
| 7 namespace web { | 7 namespace web { |
| 8 | 8 |
| 9 TestNavigationManager::TestNavigationManager() | 9 TestNavigationManager::TestNavigationManager() |
| 10 : pending_item_(nullptr), | 10 : pending_item_(nullptr), |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 } | 120 } |
| 121 | 121 |
| 122 void TestNavigationManager::GoForward() { | 122 void TestNavigationManager::GoForward() { |
| 123 NOTREACHED(); | 123 NOTREACHED(); |
| 124 } | 124 } |
| 125 | 125 |
| 126 void TestNavigationManager::GoToIndex(int index) { | 126 void TestNavigationManager::GoToIndex(int index) { |
| 127 NOTREACHED(); | 127 NOTREACHED(); |
| 128 } | 128 } |
| 129 | 129 |
| 130 void TestNavigationManager::Reload(bool check_for_repost) { | 130 void TestNavigationManager::Reload(ReloadType reload_type, |
| 131 bool check_for_repost) { |
| 131 NOTREACHED(); | 132 NOTREACHED(); |
| 132 } | 133 } |
| 133 | 134 |
| 134 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { | 135 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { |
| 135 NOTREACHED(); | 136 NOTREACHED(); |
| 136 } | 137 } |
| 137 | 138 |
| 138 } // namespace web | 139 } // namespace web |
| OLD | NEW |