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

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

Issue 2711683002: (Set)IsOverridingUserAgent should be called on VisibleItem (Closed)
Patch Set: Rename function names Created 3 years, 10 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 } 128 }
129 129
130 void TestNavigationManager::Reload(bool check_for_repost) { 130 void TestNavigationManager::Reload(bool check_for_repost) {
131 NOTREACHED(); 131 NOTREACHED();
132 } 132 }
133 133
134 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() { 134 void TestNavigationManager::OverrideDesktopUserAgentForNextPendingItem() {
135 NOTREACHED(); 135 NOTREACHED();
136 } 136 }
137 137
138 bool TestNavigationManager::IsUsingDesktopUserAgent() const {
139 NOTREACHED();
140 return false;
141 }
142
138 } // namespace web 143 } // namespace web
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698