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 NavigationItemList TestNavigationManager::GetBackwardItems() const { |
| 131 NOTREACHED(); |
| 132 return NavigationItemList(); |
| 133 } |
| 134 |
| 135 NavigationItemList TestNavigationManager::GetForwardItems() const { |
| 136 NOTREACHED(); |
| 137 return NavigationItemList(); |
| 138 } |
| 139 |
130 void TestNavigationManager::Reload(bool check_for_repost) { | 140 void TestNavigationManager::Reload(bool check_for_repost) { |
131 NOTREACHED(); | 141 NOTREACHED(); |
132 } | 142 } |
133 | 143 |
| 144 void TestNavigationManager::InsertStateFromManager( |
| 145 const web::NavigationManager* manager) { |
| 146 NOTREACHED(); |
| 147 } |
| 148 |
134 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { | 149 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { |
135 NOTREACHED(); | 150 NOTREACHED(); |
136 } | 151 } |
137 | 152 |
138 } // namespace web | 153 } // namespace web |
OLD | NEW |