Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Side by Side Diff: ios/web/public/test/fakes/test_navigation_manager.mm

Issue 2740233002: Remove CRWSessionController usage from BrowserViewController. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« ios/web/public/navigation_manager.h ('K') | « ios/web/public/test/fakes/test_navigation_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698