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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 NavigationItemList TestNavigationManager::GetForwardItems() const { | 135 NavigationItemList TestNavigationManager::GetForwardItems() const { |
136 NOTREACHED(); | 136 NOTREACHED(); |
137 return NavigationItemList(); | 137 return NavigationItemList(); |
138 } | 138 } |
139 | 139 |
140 void TestNavigationManager::Reload(bool check_for_repost) { | 140 void TestNavigationManager::Reload(bool check_for_repost) { |
141 NOTREACHED(); | 141 NOTREACHED(); |
142 } | 142 } |
143 | 143 |
| 144 void TestNavigationManager::InsertStateFromManager( |
| 145 const web::NavigationManager* manager) { |
| 146 NOTREACHED(); |
| 147 } |
| 148 |
144 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { | 149 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { |
145 NOTREACHED(); | 150 NOTREACHED(); |
146 } | 151 } |
147 | 152 |
148 } // namespace web | 153 } // namespace web |
OLD | NEW |